1
0
mirror of https://gitlab.crans.org/bde/nk20 synced 2025-01-16 21:21:17 +00:00

25 lines
652 B
YAML
Raw Normal View History

2020-07-21 22:36:37 +02:00
---
- name: Make Django migrations
command: /var/www/note_kfet/env/bin/python manage.py makemigrations
args:
chdir: /var/www/note_kfet
become_user: www-data
- name: Migrate Django database
command: /var/www/note_kfet/env/bin/python manage.py migrate
args:
chdir: /var/www/note_kfet
2020-08-01 16:32:26 +02:00
become_user: postgres
2020-07-21 22:36:37 +02:00
- name: Compile messages
command: /var/www/note_kfet/env/bin/python manage.py compilemessages
args:
chdir: /var/www/note_kfet
become_user: www-data
- name: Install initial fixtures
command: /var/www/note_kfet/env/bin/python manage.py loaddata initial
args:
chdir: /var/www/note_kfet
2020-08-01 16:32:26 +02:00
become_user: postgres