1
0
mirror of https://gitlab.crans.org/bde/nk20 synced 2025-01-19 06:31:20 +00:00

15 lines
450 B
YAML
Raw Normal View History

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