Django API for Library Management System
You first need an env βοΈ
# create the env
conda create --name libraryenv
# install requirements
pip install -r requirements.txtThis project uses PostgreSQL. If you wish to use another database you would need to modify "DATABASES" in settings.py accordingly. Otherwise you just need a .env file with DB credentials. Migrate models to your db
python manage.py migrateStart the app
python manage.py runserverComplete docs of the API are available at the endpoint:
http://{HOST}/docs