mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-11 18:26:50 +00:00
This prevents contributors from inadvertently committing changes on the .env.test file (which is tracked) Reverts changes to .env.test and changes README.md accordingly
38 lines
1.3 KiB
Plaintext
38 lines
1.3 KiB
Plaintext
# ENV vars for the test environment
|
|
# Override locally with `.env.test.local`
|
|
|
|
# Test env specific variables
|
|
#
|
|
# Adjust this to your computer. When you start test-driven development, you may
|
|
# want to reduce this value to avoid waiting for a test that you expect to fail.
|
|
CAPYBARA_MAX_WAIT_TIME="10"
|
|
|
|
# General app specific variables
|
|
|
|
# Locale for translation. Using a locale other than `en` tests the
|
|
# successful fallback to `en`.
|
|
LOCALE="en_TST"
|
|
|
|
OFN_REDIS_JOBS_URL="redis://localhost:6379/2"
|
|
|
|
SECRET_TOKEN="xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
|
|
STRIPE_INSTANCE_SECRET_KEY="bogus_key"
|
|
STRIPE_CUSTOMER="bogus_customer"
|
|
STRIPE_ACCOUNT="bogus_account"
|
|
STRIPE_CLIENT_ID="bogus_client_id"
|
|
STRIPE_PUBLIC_TEST_API_KEY="bogus_stripe_publishable_key"
|
|
|
|
SITE_URL="test.host"
|
|
|
|
# OIDC Settings for DFC authentication
|
|
# Find secrets in BitWarden.
|
|
# To get a refresh token: log into the OIDC provider, connect your OFN user to it at /admin/oidc_settings, then copy the token from the database:
|
|
# ./bin/rails runner 'puts "OPENID_REFRESH_TOKEN=\"#{OidcAccount.last.refresh_token}\""'
|
|
OPENID_APP_ID="test-provider"
|
|
OPENID_APP_SECRET="dummy-openid-app-secret-token"
|
|
OPENID_REFRESH_TOKEN="dummy-refresh-token"
|
|
|
|
ACTIVE_RECORD_ENCRYPTION_PRIMARY_KEY="test_primary_key"
|
|
ACTIVE_RECORD_ENCRYPTION_DETERMINISTIC_KEY="test_deterministic_key"
|
|
ACTIVE_RECORD_ENCRYPTION_KEY_DERIVATION_SALT="test_derivation_salt"
|