b3e3a06858
Co-authored-by: Cursor <cursoragent@cursor.com>
20 lines
432 B
Bash
20 lines
432 B
Bash
# Скопируйте в .env или запустите: go run ./cmd/install
|
|
|
|
SITE_DOMAIN=localhost
|
|
CADDY_EMAIL=admin@localhost
|
|
HTTP_PORT=80
|
|
HTTPS_PORT=443
|
|
|
|
POSTGRES_USER=shop
|
|
POSTGRES_PASSWORD=shop_secret_change_me
|
|
POSTGRES_DB=shopdb
|
|
|
|
DATABASE_URL=postgres://shop:shop_secret_change_me@postgres:5432/shopdb?sslmode=require
|
|
APP_PORT=8080
|
|
SESSION_TTL_HOURS=168
|
|
COOKIE_SECURE=false
|
|
|
|
DB_HOST=postgres
|
|
DB_PORT=5432
|
|
DB_SSLMODE=require
|