feat: implementazione V1 - app.py, Dockerfile, docker-compose, .env.example, requirements

This commit is contained in:
Luca Sacchi Ricciardi
2026-04-24 13:09:46 +02:00
parent 96441e5e10
commit 10ed6f6c2f
7 changed files with 255 additions and 24 deletions
+17
View File
@@ -0,0 +1,17 @@
# Credenziali database Supabase
# Ricavabili da: Supabase Dashboard > Project Settings > Database
SUPABASE_DB_HOST=db.<project-ref>.supabase.co
SUPABASE_DB_PORT=5432
SUPABASE_DB_NAME=postgres
SUPABASE_DB_USER=postgres
SUPABASE_DB_PASSWORD=
# Intervallo tra un keep-alive e il successivo (in minuti)
# Default 4320 = 72 ore (3 volte a settimana)
PING_INTERVAL_MINUTES=4320
# Query di keep-alive (non modificare se non necessario)
PING_QUERY=SELECT 1;
# Timezone del container (per i log)
TZ=Europe/Rome