Base repository for the backend API of OCRed.
- Create a virtual environment
python -m venv .venv
- Activate the environment
.venv/Scripts/activate
- Install the dependencies
python -m pip install -r requirements.txt
- Change directory and start the server
cd backend
uvicorn main:app --reload