-
Notifications
You must be signed in to change notification settings - Fork 299
Issue 410 #411
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issue 410 #411
Changes from all commits
930afc4
cb5317d
f596a11
b067e63
7ca9d01
926988a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -70,13 +70,18 @@ From Source | |
|
||
git clone https://github.com/django-json-api/django-rest-framework-json-api.git | ||
cd django-rest-framework-json-api | ||
pip install -e . | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. How does this work? I don't understand where the DJA package would be available to Python if it's not installed in editable mode. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It's available because you are in the source tree for DJA so
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sorry, neglected to answer the question: "Did you happen to run the steps you listed in Getting Started from a totally fresh clone to see if it would start the example app properly?" Yes. Several times. |
||
python -m venv env | ||
source env/bin/activate | ||
pip install -r example/requirements.txt | ||
django-admin.py runserver | ||
pip install -e . | ||
django-admin.py startproject example . | ||
python manage.py migrate | ||
python manage.py runserver | ||
|
||
Browse to http://localhost:8000 | ||
|
||
## Running Tests | ||
|
||
python runtests.py | ||
pip install tox | ||
tox | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,13 @@ | ||
# Requirements specifically for the example app | ||
packaging | ||
Django>=1.11 | ||
django-debug-toolbar | ||
django-polymorphic>=2.0 | ||
djangorestframework | ||
inflection | ||
pluggy | ||
py | ||
pyparsing | ||
pytz | ||
six | ||
sqlparse |