You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
707 B
26 lines
707 B
8 months ago
|
COMPOSE_PROJECT_NAME=ghostfolio-development
|
||
|
|
||
|
# CACHE
|
||
|
REDIS_HOST=localhost
|
||
|
REDIS_PORT=6379
|
||
|
REDIS_PASSWORD=<INSERT_REDIS_PASSWORD>
|
||
|
|
||
|
# POSTGRES
|
||
|
POSTGRES_DB=ghostfolio-db
|
||
|
POSTGRES_USER=user
|
||
|
POSTGRES_PASSWORD=<INSERT_POSTGRES_PASSWORD>
|
||
|
|
||
|
# VARIOUS
|
||
|
ACCESS_TOKEN_SALT=<INSERT_RANDOM_STRING>
|
||
|
DATABASE_URL=postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@localhost:5432/${POSTGRES_DB}?connect_timeout=300&sslmode=prefer
|
||
|
JWT_SECRET_KEY=<INSERT_RANDOM_STRING>
|
||
|
|
||
|
# DEVELOPMENT
|
||
|
|
||
|
# Nx 18 enables using plugins to infer targets by default
|
||
|
# This is disabled for existing workspaces to maintain compatibility
|
||
|
# For more info, see: https://nx.dev/concepts/inferred-tasks
|
||
|
NX_ADD_PLUGINS=false
|
||
|
|
||
|
NX_NATIVE_COMMAND_RUNNER=false
|