Skip to content

Commit

Permalink
add demo project readme
Browse files Browse the repository at this point in the history
  • Loading branch information
pirate committed May 21, 2024
1 parent 997a6a7 commit 631ee8f
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions django_example_project/README.md
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/
```

0 comments on commit 631ee8f

Please sign in to comment.