We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 96c533b commit 8821b99Copy full SHA for 8821b99
1 file changed
docs/getting-started.md
@@ -68,15 +68,15 @@ From Source
68
69
## Running the example app
70
71
- git clone https://github.com/django-json-api/django-rest-framework-json-api.git
72
- cd django-rest-framework-json-api
73
- python -m venv env
74
- source env/bin/activate
75
- pip install -r example/requirements.txt
+ git clone https://github.com/django-json-api/django-rest-framework-json-api.git
+ cd django-rest-framework-json-api
+ python3 -m venv env
+ source env/bin/activate
+ pip install -r example/requirements.txt
76
pip install -e .
77
- django-admin.py startproject example .
78
- python manage.py migrate
79
- python manage.py runserver
+ django-admin migrate --settings=example.settings
+ django-admin runserver --settings=example.settings
+
80
81
Browse to http://localhost:8000
82
0 commit comments