Small update to the migrate.py commands

Added python in front, to make sure it’s the virtualenv version of python that is used
This commit is contained in:
Thomas Flummer 2020-03-04 22:26:44 +01:00
parent 3a7ac99fea
commit 059127dd5c
1 changed files with 4 additions and 4 deletions

View File

@ -73,20 +73,20 @@ Edit the configuration file, setting up `DATABASES` matching your Postgres setti
Is this a new installation? Initialize the database: Is this a new installation? Initialize the database:
``` ```
(venv) $ src/manage.py migrate (venv) $ python src/manage.py migrate
``` ```
Is this for local development? Bootstrap the database with dummy data and users: Is this for local development? Bootstrap the database with dummy data and users:
``` ```
(venv) $ src/manage.py bootstrap-devsite (venv) $ python src/manage.py bootstrap-devsite
``` ```
### Done ### Done
Is this for local development? Start the Django devserver: Is this for local development? Start the Django devserver:
``` ```
(venv) $ src/manage.py runserver (venv) $ python src/manage.py runserver
``` ```
Otherwise start uwsgi or similar to serve the application. Otherwise start uwsgi or similar to serve the application.
@ -100,7 +100,7 @@ Enjoy!
Add a new camp by running: Add a new camp by running:
``` ```
(venv) $ src/manage.py createcamp {camp-slug} (venv) $ python src/manage.py createcamp {camp-slug}
``` ```
Then go to the admin interface to edit the camp details, adding the same slug Then go to the admin interface to edit the camp details, adding the same slug