From 631ee8f95b821218ccde51135e945fd19d3c66ec Mon Sep 17 00:00:00 2001 From: Nick Sweeting Date: Mon, 20 May 2024 22:46:49 -0700 Subject: [PATCH] add demo project readme --- django_example_project/README.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 django_example_project/README.md diff --git a/django_example_project/README.md b/django_example_project/README.md new file mode 100644 index 0000000..9041917 --- /dev/null +++ b/django_example_project/README.md @@ -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/ +```