mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-11 18:26:50 +00:00
73 lines
3.1 KiB
Bash
73 lines
3.1 KiB
Bash
# Default ENV vars (primarily for the development environment).
|
|
# Create `.env.development.local` or `.env.test.local` to add any local overrides.
|
|
|
|
# Time zone must match the operating system time zone in order to pass all tests.
|
|
# This string is the key for the MAPPING hash constant in ActiveSupport::TimeZone.
|
|
# Documentation including the hash="https://api.rubyonrails.org/classes/ActiveSupport/TimeZone.html
|
|
TIMEZONE="Melbourne"
|
|
|
|
# Default country for dropdowns etc. See for codes="http://en.wikipedia.org/wiki/ISO_3166-1
|
|
DEFAULT_COUNTRY_CODE="AU"
|
|
|
|
# Locale for translation.
|
|
LOCALE="en_AU"
|
|
|
|
# For multilingual - ENV doesn't have array so pass it as string with commas
|
|
AVAILABLE_LOCALES="en_AU,es"
|
|
|
|
# Spree zone.
|
|
CHECKOUT_ZONE="Australia"
|
|
|
|
# Find currency codes at http://en.wikipedia.org/wiki/ISO_4217.
|
|
CURRENCY="AUD"
|
|
|
|
# The whenever gem can set the `MAILTO` variable for our cron jobs.
|
|
# You can define an email address to notify if any job outputs something.
|
|
# But you need a working mail server setup so that the message is delivered.
|
|
# See: config/schedule.rb
|
|
# SCHEDULE_NOTIFICATIONS="admin@example.com"
|
|
|
|
# Mail settings
|
|
MAIL_HOST="example.com"
|
|
MAIL_DOMAIN="example.com"
|
|
MAIL_PORT="25"
|
|
SMTP_USERNAME="ofn"
|
|
SMTP_PASSWORD="f00d"
|
|
|
|
# Optional mail settings
|
|
# MAIL_SECURE_CONNECTION="TLS' # 'None' (default), 'SSL' or 'TLS'
|
|
# MAILS_FROM="hello@example.com"
|
|
# MAIL_BCC="manager@example.com"
|
|
|
|
# Javascript error reporting via Bugsnag.
|
|
# BUGSNAG_JS_KEY=""
|
|
|
|
# see="https://developers.google.com/maps/documentation/javascript/get-api-key
|
|
# GOOGLE_MAPS_API_KEY="xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
|
|
# see https://developers.google.com/maps/documentation/javascript/localization#Region
|
|
# GOOGLE_MAPS_REGION="XX"
|
|
|
|
# Stripe details for instance account
|
|
# Find these under 'Developers' -> 'API keys' in your Stripe account dashboard.
|
|
# Under 'Connect', the Redirect URI should be set to https://YOUR_SERVER_URL/stripe/callbacks (e.g. https://openfoodnetwork.org.uk/stripe/callbacks)
|
|
# Under 'Webhooks', you should set up a Connect endpoint pointing to https://YOUR_SERVER_URL/stripe/webhooks e.g. (https://openfoodnetwork.org.uk/stripe/webhooks)
|
|
# STRIPE_INSTANCE_SECRET_KEY="sk_test_xxxxxx" # This can be a test key or a live key
|
|
# STRIPE_INSTANCE_PUBLISHABLE_KEY="pk_test_xxxx" # This can be a test key or a live key
|
|
# STRIPE_CLIENT_ID="ca_xxxx" # This can be a development ID or a production ID
|
|
# STRIPE_ENDPOINT_SECRET="whsec_xxxx"
|
|
|
|
# New relic settings
|
|
# see: https://one.eu.newrelic.com/admin-portal/, Administration > API keys to get the license key
|
|
# NEW_RELIC_AGENT_ENABLED=true
|
|
# NEW_RELIC_APP_NAME="Open Food Network"
|
|
# NEW_RELIC_LICENSE_KEY="xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
|
|
|
|
# Database encryption configuration, required for VINE connected app
|
|
# Generate with bin/rails db:encryption:init
|
|
# ACTIVE_RECORD_ENCRYPTION_PRIMARY_KEY="xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
|
|
# ACTIVE_RECORD_ENCRYPTION_DETERMINISTIC_KEY="xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
|
|
# ACTIVE_RECORD_ENCRYPTION_KEY_DERIVATION_SALT="xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
|
|
|
|
# VINE API settings
|
|
# VINE_API_URL="https://vine-staging.openfoodnetwork.org.au/api/v1"
|