repo setup
This commit is contained in:
12
.env
Normal file
12
.env
Normal 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
|
||||
Reference in New Issue
Block a user