A read-only API that shows my reviews of books, TV, and movies from over 20 years. ⇢ gugulet.hu/technical/api
- Python 87.7%
- Shell 11.3%
- Dockerfile 1%
| .checks | ||
| app | ||
| data | ||
| .envrc | ||
| Dockerfile | ||
| readme.md | ||
| requirements.txt | ||
| skills.md | ||
Reviews API
This repo contains the files for creating my Reviews API demo at gugulet.hu/technical/api.
Setup steps
- Clone the repo and enter the directory:
git clone git:git.gugulet.hu/g_it/api.g_it; cd api - Setup the virtual environment:
python3 -m venv .venv - Activate the virtual environment:
source .venv/bin/activate - Install all the packages:
pip install -r requirements.txt - Run the server:
uvicorn app.main:app --host 127.0.0.1 --port 8001