mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
Re-records cassettes Creates a bogus publishable key We need to feed some value to the ENV variables which are picked up from the local test environment, for the build to run. We could also store them all as environment secrets on our repo, but I don'r think this is necessary, as we only run recorderd API/VCR calls on our build, and never real API calls.
15 lines
400 B
Plaintext
15 lines
400 B
Plaintext
# ENV vars for the test environment
|
|
# Override locally with `.env.test.local`
|
|
|
|
SECRET_TOKEN="xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
|
|
STRIPE_SECRET_TEST_API_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"
|
|
|
|
OPENID_APP_ID="test-provider"
|
|
OPENID_APP_SECRET="12345"
|