https://github.com/marcos-grocha/pizza-delivery-fastapi
Backend • API Rest • Serviço de delivery
https://github.com/marcos-grocha/pizza-delivery-fastapi
fastapi
Last synced: about 1 month ago
JSON representation
Backend • API Rest • Serviço de delivery
- Host: GitHub
- URL: https://github.com/marcos-grocha/pizza-delivery-fastapi
- Owner: marcos-grocha
- Created: 2026-02-16T15:58:36.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2026-02-18T04:44:19.000Z (4 months ago)
- Last Synced: 2026-02-18T06:54:48.276Z (4 months ago)
- Topics: fastapi
- Language: Python
- Homepage:
- Size: 24.4 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 🍕 Marcão Pizzaria
Sistema *backend* que expõe a **API** para [Pizza Delivery React](https://github.com/marcos-grocha/pizza-delivery-react).
## Instalação
### Crie ambiente virtual:
```
python -m venv .venv
```
### Inicie o ambiente virtual:
```
.\.venv\Scripts\activate
```
### Instale as dependências dentro do ambiente:
```
pip install -r requirements.txt
```
### Execute o framework com reload automático
```
uvicorn main:app --reload
```
### Consulte a documentação da API gerado pelo FastAPI em:
```http://localhost:8000/docs```
---
## Banco de Dados
### Inicia o alembic
```alembic init alembic```
### Gera migração
```alembic revision --autogenerate -m "Mensagem da migração"```
### Roda migração
```alembic upgrade head```
---
## Endpoints

---
## Autor
Desenvolvido por [Marcos Rocha](https://www.linkedin.com/in/marcos-grocha/).