Feat: Adds base project

This commit is contained in:
2026-02-25 10:55:19 -03:00
parent 31f87ab437
commit 624f5dc7e6
46 changed files with 2355 additions and 0 deletions

9
back/entrypoint.sh Normal file
View File

@@ -0,0 +1,9 @@
#!/bin/bash
# Inicia a API FastAPI em segundo plano
echo "Iniciando API FastAPI na porta 8000..."
uvicorn app.api:app --host 0.0.0.0 --port 8000 &
# Inicia o aplicativo Streamlit em primeiro plano
echo "Iniciando aplicativo Streamlit na porta 8501..."
streamlit run app/front.py --server.port 8501 --server.address 0.0.0.0 --server.headless true