https://github.com/martincastroalvarez/python-fastapi
A FastAPI app
https://github.com/martincastroalvarez/python-fastapi
Last synced: about 1 year ago
JSON representation
A FastAPI app
- Host: GitHub
- URL: https://github.com/martincastroalvarez/python-fastapi
- Owner: MartinCastroAlvarez
- Created: 2024-08-20T23:17:07.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-20T23:26:12.000Z (almost 2 years ago)
- Last Synced: 2025-02-14T17:30:06.426Z (over 1 year ago)
- Language: Python
- Size: 143 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# FastAPI Application

## Instructions
* Install the dependencies
```bash
virtualenv -p python3 .env
source .env/bin/activate
pip install -r -requirements.txt
```
* Start the API
```bash
uvicorn app:app --reload
```
* Read the Docs. Visit [http://127.0.0.1:8000/docs](http://127.0.0.1:8000/docs)