repo setup

This commit is contained in:
Nicola Malizia
2025-10-10 17:41:56 +02:00
commit 787adc2ba6
25 changed files with 3428 additions and 0 deletions

12
.env Normal file
View File

@@ -0,0 +1,12 @@
# ============== POSTGRES ==============
POSTGRES_DB=mydatabase
POSTGRES_USER=myuser
POSTGRES_PASSWORD=mysecretpassword
# URL del database per SQLAlchemy e Alembic
# La porta 5432 è quella interna di Docker. 'db' è il nome del servizio in docker-compose.
DATABASE_URL=postgresql://myuser:mysecretpassword@db:5432/mydatabase
# ============== FRONTEND ==============
# L'URL a cui il frontend contatterà il backend (attraverso il proxy)
VITE_API_URL=http://localhost:8080/api