2020-07-15 05:46:42 +00:00
|
|
|
---
|
|
|
|
- name: Install PIP basic dependencies
|
|
|
|
pip:
|
|
|
|
requirements: /var/www/note_kfet/requirements/base.txt
|
|
|
|
virtualenv: /var/www/note_kfet/env
|
2020-07-15 07:27:11 +00:00
|
|
|
virtualenv_command: /usr/bin/python3 -m venv
|
2020-07-15 08:09:28 +00:00
|
|
|
become_user: www-data
|
2020-07-15 05:46:42 +00:00
|
|
|
|
|
|
|
- name: Install PIP production dependencies
|
|
|
|
pip:
|
|
|
|
requirements: /var/www/note_kfet/requirements/production.txt
|
|
|
|
virtualenv: /var/www/note_kfet/env
|
2020-07-15 07:27:11 +00:00
|
|
|
virtualenv_command: /usr/bin/python3 -m venv
|
2020-07-15 08:09:28 +00:00
|
|
|
become_user: www-data
|