This project contains a website that might be used to manage the catalog for a local library.
- Python 3.12.6
- Django 5.1.1
This project was built whilst following the MDN "Local Library" Django tutorial. You can find more information about that here.
The Django documentation can be found here.
- Clone this repository and
cd
into the new directory - Activate a virtualenv for this project:
python -m venv <virtualenvname>
- Install project dependencies:
pip install -r requirements/local.txt
- Apply the migrations:
python manage.py migrate
- Fire up the development server:
python manage.py runserver