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.
- Host: GitHub
- URL: https://github.com/saransh-cpp/ocred_backend
- Owner: Saransh-cpp
- Created: 2024-01-21T14:10:54.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-21T14:11:34.000Z (over 2 years ago)
- Last Synced: 2025-10-07T01:38:25.560Z (8 months ago)
- Language: Python
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```