Library Web Application to improve web app development skills
To create a superuser (useful to access admin panel to add new books or see books directly)
- cd into project directory
- python manage.py createsuperuser
- Follow prompts
To run:
- Clone into a directory
- cd into project directory
- Create a .env with a SECRET_KEY="somesecretkey" and DEBUG=True in the config directory
- (Optional) create a new virtual environment if you don't want to pollute your global pip space
- pip install -r requirements.txt
- python manage.py migrate
- python manage.py runserver