##Demo Project for admintab
This example is provided as a convenience feature to allow potential users to try the app straight from the app repo without having to create a django project.
It can also be used to develop the app in place.
To run this example, follow these instructions:
-
Navigate to the
demo
directory -
Install the requirements for the package:
pip install -r requirements.txt
-
Make and apply migrations
python manage.py makemigrations python manage.py migrate
-
Run the server
python manage.py runserver
-
Access from the browser at
http://127.0.0.1:8000