14 lines
589 B
Bash
14 lines
589 B
Bash
# This is on the only .env file commited to git.
|
|
# It's purpose is to provide an environment from which it can operate the app and do full development.
|
|
|
|
DATABASE_URL=postgres://app_client:app_password@localhost:5432/inventory_2?sslmode=disable
|
|
TEST_DATABASE_URL=postgres://app_client:app_password@localhost:5432/inventory_2_test?sslmode=disable
|
|
|
|
# AUTH0_DOMAIN / AUTH0_CLIENT_ID / AUTH0_CLIENT_SECRET / AUTH0_CALLBACK_URL
|
|
# are intentionally omitted: with DEV_AUTH_ENABLED=true below, real Auth0
|
|
# login never runs, so config.Load() doesn't require them.
|
|
|
|
DEV_AUTH_ENABLED=true
|
|
|
|
PORT=8090
|