diff --git a/README.md b/README.md index 43c5a8a5..a9eab62d 100644 --- a/README.md +++ b/README.md @@ -195,7 +195,6 @@ Sinon vous pouvez suivre les étapes décrites ci-dessous. DJANGO_SECRET_KEY=CHANGE_ME DJANGO_SETTINGS_MODULE="note_kfet.settings NOTE_URL=localhost # URL où accéder à la note - DOMAIN=localhost # note.example.com CONTACT_EMAIL=tresorerie.bde@localhost # Le reste n'est utile qu'en production, pour configurer l'envoi des mails NOTE_MAIL=notekfet@localhost @@ -211,7 +210,6 @@ Sinon vous pouvez suivre les étapes décrites ci-dessous. $ source /env/bin/activate (env)$ ./manage.py check # pas de bêtise qui traine - (env)$ ./manage.py makemigrations (env)$ ./manage.py migrate 7. *Enjoy \o/* diff --git a/ansible/roles/7-postinstall/tasks/main.yml b/ansible/roles/7-postinstall/tasks/main.yml index 25fde0e7..6f3017a5 100644 --- a/ansible/roles/7-postinstall/tasks/main.yml +++ b/ansible/roles/7-postinstall/tasks/main.yml @@ -1,10 +1,4 @@ --- -- 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: diff --git a/apps/scripts b/apps/scripts index 7246f4d1..7479671b 160000 --- a/apps/scripts +++ b/apps/scripts @@ -1 +1 @@ -Subproject commit 7246f4d18aa4f5e161b6e185b02fa28187e04747 +Subproject commit 7479671b3f6c499958d3ad991eb54de3010f4da8 diff --git a/entrypoint.sh b/entrypoint.sh index ab33fbe8..dfd68977 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -14,7 +14,6 @@ fi # Set up Django project python3 manage.py collectstatic --noinput python3 manage.py compilemessages -python3 manage.py makemigrations python3 manage.py migrate if [ "$1" ]; then diff --git a/tox.ini b/tox.ini index b160324b..eff97a2b 100644 --- a/tox.ini +++ b/tox.ini @@ -15,7 +15,6 @@ deps = -r{toxinidir}/requirements.txt coverage commands = - ./manage.py makemigrations coverage run --omit='*migrations*,apps/scripts*' --source=apps,note_kfet ./manage.py test apps/ coverage report -m