28 lines
656 B
Bash
28 lines
656 B
Bash
APP_NAME=Budgit
|
|
APP_TAGLINE=
|
|
APP_ENV=development
|
|
APP_URL=http://127.0.0.1:7331 # required for base url in email links etc, port is the templ proxy port
|
|
HOST=127.0.0.1
|
|
PORT=9000
|
|
|
|
# PostgreSQL 17 connection string (libpq URL or DSN). Required.
|
|
DB_CONNECTION="postgres://budgit:budgit@127.0.0.1:5432/budgit?sslmode=disable"
|
|
|
|
JWT_SECRET=
|
|
# Go duration format
|
|
JWT_EXPIRY=168h
|
|
|
|
# Set to true to block new account creation via magic link. Existing users can still log in.
|
|
DISABLE_REGISTRATION=false
|
|
|
|
MAILER_SMTP_HOST=
|
|
MAILER_SMTP_PORT=
|
|
MAILER_IMAP_HOST=
|
|
MAILER_IMAP_PORT=
|
|
MAILER_USERNAME=
|
|
MAILER_PASSWORD=
|
|
MAILER_EMAIL_FROM=
|
|
|
|
SUPPORT_EMAIL=
|
|
|
|
GOOGLE_MEASURING_ID=
|