An open API service indexing awesome lists of open source software.

https://github.com/saransh-cpp/ocred_backend

Base repository for the backend API of OCRed.
https://github.com/saransh-cpp/ocred_backend

Last synced: 8 months ago
JSON representation

Base repository for the backend API of OCRed.

Awesome Lists containing this project

README

          

# Backend

Base repository for the backend API of `OCRed`.

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