28 lines
538 B
Bash
28 lines
538 B
Bash
PGHOST=db
|
|
PGPORT=5432
|
|
PGUSER=postgres
|
|
PGPASSWORD=postgres
|
|
PGDATABASE=postgres
|
|
SSLmode=disable
|
|
PGURL='postgres://postgres:postgres@db:5432/postgres?sslmode=disable'
|
|
|
|
# SERVER
|
|
SERVER_PORT=8000
|
|
SECRET_KEY=my_very_secret_key
|
|
|
|
# MIGRATOR
|
|
MIGRATOR_PORT=3000
|
|
GOOSE_DRIVER=postgres
|
|
GOOSE_DBSTRING='user=postgres dbname=postgres sslmode=disable'
|
|
GOOSE_MIGRATION_DIR=migrations
|
|
|
|
# FRONTEND SPA
|
|
HTTP_INNDER_PORT=80
|
|
HTTP_OUTER_PORT=80
|
|
HTTPS_INNDER_PORT=443
|
|
HTTPS_OUTER_PORT=443
|
|
|
|
# NGINX
|
|
EMAIL=valitovgaziz@yandex.ru
|
|
DOMAINS=yalarba.ru,www.yalarba.ru
|