initial commit

This commit is contained in:
2025-10-26 23:39:49 -05:00
commit 5fb0909e8d
120 changed files with 11279 additions and 0 deletions

23
docker-compose.dev.yml Normal file
View File

@@ -0,0 +1,23 @@
version: '3.8'
services:
balotario-dev:
build: .
container_name: balotario-dev
ports:
- "5000:5000"
environment:
- FLASK_ENV=development
- FLASK_DEBUG=true
- DOCKER_CONTAINER=true
volumes:
# Montar código para desarrollo (hot reload)
- .:/app
- /app/venv # Excluir venv del montaje
restart: "no"
networks:
- balotario-dev-network
networks:
balotario-dev-network:
driver: bridge