/ocred_backend

Base repository for the backend API of OCRed.

Primary LanguagePython

Backend

Base repository for the backend API of OCRed.

Running locally

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