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

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.

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
```