mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-11 18:26:50 +00:00
33 lines
1.1 KiB
Plaintext
33 lines
1.1 KiB
Plaintext
# ENV vars for the development environment
|
|
# Override locally with `.env.development.local`
|
|
#
|
|
# You may also want to use this when testing other environments locally:
|
|
#
|
|
# cp .env.development .env.local
|
|
|
|
# Locale for translation. Using a locale other than `en` tests the
|
|
# successful fallback to `en`. To see up-to-date text used in production,
|
|
# set another locale in a local env file.
|
|
LOCALE="en_TST"
|
|
|
|
VERBOSE_QUERY_LOGS=true
|
|
|
|
SECRET_TOKEN="xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
|
|
|
|
OFN_REDIS_URL="redis://localhost:6379/1"
|
|
OFN_REDIS_JOBS_URL="redis://localhost:6379/2"
|
|
OFN_REDIS_CABLE_URL="redis://localhost:6379/0"
|
|
|
|
SITE_URL="localhost:3000"
|
|
|
|
# Deactivate rack-timeout in development.
|
|
# https://github.com/zombocom/rack-timeout#configuring
|
|
RACK_TIMEOUT_SERVICE_TIMEOUT="0"
|
|
RACK_TIMEOUT_WAIT_TIMEOUT="0"
|
|
RACK_TIMEOUT_WAIT_OVERTIME="0"
|
|
|
|
# Database encryption configuration, required for VINE connected app
|
|
ACTIVE_RECORD_ENCRYPTION_PRIMARY_KEY="dev_primary_key"
|
|
ACTIVE_RECORD_ENCRYPTION_DETERMINISTIC_KEY="dev_determinnistic_key"
|
|
ACTIVE_RECORD_ENCRYPTION_KEY_DERIVATION_SALT="dev_derivation_salt"
|