Skip to content

Latest commit

 

History

History
26 lines (21 loc) · 647 Bytes

README.md

File metadata and controls

26 lines (21 loc) · 647 Bytes

Library Management System with FastAPI

This project is a Library Management System built with FastAPI

To install venv run

python -m venv venv 
venv\Scripts\activate
pip install -r requirements.txt

To run the application you first need to go to the directory file and run MongoDb and Redis are running in container but celery and the application itself should be run in your local machine

docker-compose up

Then open another command prompt and run

uvicorn index:app --reload

To run celery open another command prompt and run

celery -A workers.celery_worker worker --loglevel=INFO