https://github.com/4l1c3-r4bb1t/estudos-fastapi
📚 Estudos sobre FastAPI.
https://github.com/4l1c3-r4bb1t/estudos-fastapi
fastapi python sqlalchemy sqlmodel
Last synced: 24 days ago
JSON representation
📚 Estudos sobre FastAPI.
- Host: GitHub
- URL: https://github.com/4l1c3-r4bb1t/estudos-fastapi
- Owner: 4L1C3-R4BB1T
- Created: 2024-05-01T23:41:41.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-23T13:12:19.000Z (about 2 years ago)
- Last Synced: 2025-09-07T10:35:41.838Z (9 months ago)
- Topics: fastapi, python, sqlalchemy, sqlmodel
- Language: Python
- Homepage:
- Size: 21.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
```bash
# cria ambiente virtual
python -m venv
# cria arquivo requirements.txt com as dependências do projeto
pip freeze > requirements.txt
# instala as dependências do projeto
pip install -r requirements.txt
# starta o server
uvicorn main:app
gunicorn main:app -w 4 -k uvicorn.workers.UvicornWorker
# swagger
http://127.0.0.1:8000/docs
# redoc
http://127.0.0.1:8000/redoc
```