prompt 1,2,3

This commit is contained in:
fabio
2026-02-22 17:36:16 +01:00
parent e9d7941c7e
commit be462b814c
18 changed files with 714 additions and 3 deletions

32
.env.example Normal file
View File

@@ -0,0 +1,32 @@
# App
APP_NAME=trustcontact
APP_ENV=develop
APP_PORT=3000
APP_BASE_URL=http://localhost:3000
APP_BUILD_HASH=dev
# Database
DB_DRIVER=sqlite
DB_SQLITE_PATH=data/app.sqlite3
DB_POSTGRES_DSN=
# CORS (comma-separated)
CORS_ORIGINS=http://localhost:3000
CORS_HEADERS=Origin,Content-Type,Accept,Authorization,HX-Request
CORS_METHODS=GET,POST,PUT,PATCH,DELETE,OPTIONS
CORS_CREDENTIALS=true
# Sessions
SESSION_KEY=change-me-in-prod
# SMTP / Email sink
SMTP_HOST=localhost
SMTP_PORT=1025
SMTP_USERNAME=
SMTP_PASSWORD=
SMTP_FROM=noreply@example.test
EMAIL_SINK_DIR=data/email-sink
# Flags
AUTO_MIGRATE=true
SEED_ENABLED=false