-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Example Django Project | ||
|
||
|
||
```bash | ||
git clone 'https://github.com/ArchiveBox/pydantic-pkgr' | ||
cd pydantic-pkgr | ||
|
||
pip install -e . # install pydantic_pkgr from source | ||
|
||
cd django_example_project/ # then go into the demo project dir | ||
|
||
./manage.py makemigrations # create any migrations if needed | ||
./manage.py migrate # then run them to create the demo sqlite db | ||
./manage.py createsuperuser # create an admin user to test out the UI | ||
|
||
./manage.py runserver # then open http://127.0.0.1:8000/admin/ | ||
``` |