14 lines
395 B
Bash
14 lines
395 B
Bash
# Configuration JWT (OBLIGATOIRE)
|
|
JWT_SECRET=gQ/vLPx5/tlDw1xJFeZPwyG74iOv15GGuysJZcugQSct9MKKl6n5IWfH0AydMwgY
|
|
|
|
# Configuration Base de données PostgreSQL
|
|
DB_URL=jdbc:postgresql://localhost:5434/btpxpress
|
|
DB_USERNAME=btpxpress
|
|
DB_PASSWORD=btpxpress_secure_2024
|
|
DB_GENERATION=drop-and-create
|
|
DB_LOG_SQL=true
|
|
DB_SHOW_SQL=true
|
|
|
|
# Configuration application
|
|
QUARKUS_PROFILE=dev
|
|
QUARKUS_LOG_LEVEL=INFO |