|
@@ -42,7 +42,7 @@ Then run:
|
|
|
You should now be able to run `python manage.py` (within the
|
|
|
virtualenv, obviously) without error.
|
|
|
|
|
|
-The `coin/settings_local.py` file is ignore by Git: feel free to override any
|
|
|
+The `coin/settings_local.py` file is ignored by Git: feel free to override any
|
|
|
setting by writing into that file. For example, to override the `DEBUG`
|
|
|
settings:
|
|
|
|
|
@@ -50,17 +50,24 @@ settings:
|
|
|
echo 'DEBUG = TEMPLATE_DEBUG = True' >> coin/settings_local.py
|
|
|
|
|
|
|
|
|
-To sync database, the first time run :
|
|
|
+At this point, you should setup your database. Recommended is postgreSQL,
|
|
|
+but you might be able to use SQLite. For more information, see https://www.illyse.org/projects/ils-si/wiki/Mise_en_place_environnement_de_dev
|
|
|
|
|
|
- python manage.py syncdb --migrate
|
|
|
+The first time, you need to create the database, create a superuser, and
|
|
|
+import some base data to play with:
|
|
|
|
|
|
-You probably want to import some base data to play with:
|
|
|
+ python manage.py migrate
|
|
|
+ python manage.py createsuperuser
|
|
|
+ python manage.py loaddata offers ip_pool
|
|
|
|
|
|
- python manage.py loaddata offers ip_pool
|
|
|
+Then, at each code update, you only need to apply migrations:
|
|
|
|
|
|
-Then at each code update :
|
|
|
+ python manage.py migrate
|
|
|
|
|
|
- python manage.py migrate
|
|
|
+
|
|
|
+At this point, Django should run correctly:
|
|
|
+
|
|
|
+ python manage.py runserver
|
|
|
|
|
|
|
|
|
More information
|