From 2989a6e18646a43d5715e455f31e5adeaa901e34 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20P=C3=A9pin?= Date: Fri, 26 Aug 2016 16:42:00 +0200 Subject: [PATCH] Add sites fixture --- README.md | 2 +- gestioncof/fixtures/sites.json | 10 ++++++++++ provisioning/prepare_django.sh | 2 +- 3 files changed, 12 insertions(+), 2 deletions(-) create mode 100644 gestioncof/fixtures/sites.json diff --git a/README.md b/README.md index a0dd3a55..15f0ec0d 100644 --- a/README.md +++ b/README.md @@ -152,7 +152,7 @@ Il ne vous reste plus qu'à initialiser les modèles de Django avec la commande Une base de donnée pré-remplie est disponible en lançant la commande : - python manage.py loaddata users root bda gestion + python manage.py loaddata users root bda gestion sites Vous êtes prêts à développer ! Lancer GestioCOF en faisant diff --git a/gestioncof/fixtures/sites.json b/gestioncof/fixtures/sites.json new file mode 100644 index 00000000..a0d8c271 --- /dev/null +++ b/gestioncof/fixtures/sites.json @@ -0,0 +1,10 @@ +[ +{ + "fields": { + "domain": "localhost", + "name": "GestioCOF - dev - local" + }, + "model": "sites.site", + "pk": 1 +} +] diff --git a/provisioning/prepare_django.sh b/provisioning/prepare_django.sh index 5c661cc8..ef26235e 100644 --- a/provisioning/prepare_django.sh +++ b/provisioning/prepare_django.sh @@ -1,4 +1,4 @@ # Doit être lancé par bootstrap.sh python manage.py migrate -python manage.py loaddata users root bda gestion +python manage.py loaddata users root bda gestion sites