14 lines
622 B
Bash
14 lines
622 B
Bash
PORT=8080
|
|
CORS_ORIGIN=http://localhost:4200
|
|
DATABASE_URL=postgresql://postgres:postgres@localhost:5432/scouthub?schema=public
|
|
|
|
# Keycloak (realm condiviso con scouthub-home-be/-fe, vedi keycloak/realm-export.json
|
|
# alla radice del monorepo): usato solo per verificare i token, nessun client
|
|
# id/secret necessario qui.
|
|
KEYCLOAK_BASE_URL=http://localhost:8081
|
|
KEYCLOAK_REALM=scouthub
|
|
|
|
# Database dedicato ai test automatici (Jest): tenuto separato dal DB di sviluppo
|
|
# perche' la suite lo pulisce (TRUNCATE) tra un test e l'altro.
|
|
DATABASE_URL_TEST=postgresql://postgres:postgres@localhost:5432/scouthub_test?schema=public
|