update wiki

This commit is contained in:
Jesús 2019-04-08 10:58:37 -05:00
parent 22a5227de3
commit 9b3cdc3814
No known key found for this signature in database
GPG Key ID: F6EE7BC59A315766
2 changed files with 7 additions and 7 deletions

View File

@ -82,15 +82,15 @@
2. Check syntax.
./manage.py check --deploy
python manage.py check --deploy
3. Migrate changes.
./manage.py migrate
python manage.py migrate
4. Create superUSER
./manage.py createsuperuser
python manage.py createsuperuser
## Run with Apache server and wsgi

View File

@ -53,19 +53,19 @@ packages, you will probably want the following:
6. Check syntax.
./manage.py check --deploy
python manage.py check --deploy
7. Migrate changes.
./manage.py migrate
python manage.py migrate
8. Create superUSER
./manage.py createsuperuser
python manage.py createsuperuser
9. Use the following commands to start a service instance
./manage.py runserver
python manage.py runserver
## Production Installation