2018-09-05 01:51:56 +02:00
|
|
|
# Set environment variables for OSEM in this file and copy it to .env or
|
|
|
|
|
# .env.$environment (like env.production or env.development)
|
2016-04-22 16:14:41 +02:00
|
|
|
#
|
2018-09-05 01:51:56 +02:00
|
|
|
# The following is a list of variables and default values that OSEM uses to
|
|
|
|
|
# configure some aspects of the app
|
|
|
|
|
|
|
|
|
|
# Your secret key base. You can generate a secure one with
|
|
|
|
|
# bundle exec rake secret
|
|
|
|
|
SECRET_KEY_BASE=''
|
|
|
|
|
|
|
|
|
|
# The type of database to use (postgresql, mysql2, sqlite3)
|
|
|
|
|
OSEM_DB_ADAPTER=postgresql
|
|
|
|
|
# The name of the host the database runs on
|
|
|
|
|
OSEM_DB_HOST=database
|
|
|
|
|
# The port the databse runs on
|
|
|
|
|
OSEM_DB_PORT=5432
|
|
|
|
|
# The user to access the database with
|
|
|
|
|
OSEM_DB_USER=postgres
|
|
|
|
|
# The password to access the database with
|
|
|
|
|
OSEM_DB_PASSWORD=mysecretpassword
|
|
|
|
|
# The name of the database
|
|
|
|
|
OSEM_DB_NAME=postgres
|
|
|
|
|
|
|
|
|
|
# The ruby version to use
|
|
|
|
|
OSEM_RUBY_VERSION='2.5.0'
|
|
|
|
|
|
|
|
|
|
# The name of your OSEM installation
|
2016-04-22 16:14:41 +02:00
|
|
|
OSEM_NAME="OSEM"
|
|
|
|
|
|
|
|
|
|
# The host this OSEM instance runs on. Used for
|
|
|
|
|
# generating urls in emails sent
|
|
|
|
|
OSEM_HOSTNAME="localhost:3000"
|
|
|
|
|
|
|
|
|
|
# The address OSEM uses for sending mails
|
|
|
|
|
OSEM_EMAIL_ADDRESS="no-reply@localhost"
|
|
|
|
|
|
|
|
|
|
# The api key for transifex.com.
|
|
|
|
|
# See TRANSLATION.md for details
|
|
|
|
|
OSEM_TRANSIFEX_APIKEY=""
|
|
|
|
|
|
|
|
|
|
# The errbit host to post exceptions to
|
|
|
|
|
OSEM_ERRBIT_HOST=""
|
|
|
|
|
# The api key for the errbit host
|
|
|
|
|
OSEM_ERRBIT_APIKEY=""
|
|
|
|
|
|
|
|
|
|
# OMNIAUTH Developer Key/Secret for GOOGLE
|
|
|
|
|
OSEM_GOOGLE_KEY=''
|
|
|
|
|
OSEM_GOOGLE_SECRET=''
|
|
|
|
|
|
|
|
|
|
# OMNIAUTH Developer Key/Secret for Facebook
|
|
|
|
|
OSEM_FACEBOOK_KEY=''
|
|
|
|
|
OSEM_FACEBOOK_SECRET=''
|
|
|
|
|
|
|
|
|
|
# OMNIAUTH Developer Key/Secret for GitHub
|
|
|
|
|
OSEM_GITHUB_KEY=''
|
|
|
|
|
OSEM_GITHUB_SECRET=''
|
|
|
|
|
|
2017-03-13 18:16:07 +02:00
|
|
|
# OMNIAUTH Developer KEY/Secret for SUSE/openSUSE
|
|
|
|
|
OSEM_SUSE_KEY=''
|
|
|
|
|
OSEM_SUSE_SECRET=''
|
|
|
|
|
|
2016-07-27 20:23:03 +05:30
|
|
|
# STRIPE Publishable/Secret keys
|
|
|
|
|
# test keys for development mode, live for production mode
|
|
|
|
|
STRIPE_PUBLISHABLE_KEY=''
|
|
|
|
|
STRIPE_SECRET_KEY=''
|
|
|
|
|
|
2017-03-03 15:07:54 +01:00
|
|
|
# Disable linting of factories in the test suite.
|
|
|
|
|
# Speeds up turn around times of tests
|
|
|
|
|
OSEM_FACTORY_LINT="false"
|
|
|
|
|
|
2016-04-22 16:30:01 +02:00
|
|
|
# The smtp configuration. See the rails guides for more
|
|
|
|
|
# http://guides.rubyonrails.org/action_mailer_basics.html#action-mailer-configuration
|
|
|
|
|
OSEM_SMTP_ADDRESS=""
|
|
|
|
|
OSEM_SMTP_PORT=""
|
|
|
|
|
OSEM_SMTP_USERNAME=""
|
|
|
|
|
OSEM_SMTP_PASSWORD=""
|
|
|
|
|
OSEM_SMTP_AUTHENTICATION=""
|
2016-04-22 17:11:18 +02:00
|
|
|
OSEM_SMTP_DOMAIN=""
|
2017-08-02 21:19:13 -05:00
|
|
|
OSEM_SMTP_ENABLE_STARTTLS_AUTO=""
|
|
|
|
|
OSEM_SMTP_OPENSSL_VERIFY_MODE=""
|
2016-04-22 16:14:41 +02:00
|
|
|
|
|
|
|
|
# Enable the usage of the devise ichain plugin
|
|
|
|
|
OSEM_ICHAIN_ENABLED=false
|
2017-11-14 14:11:57 -08:00
|
|
|
|
2017-11-03 17:41:26 -07:00
|
|
|
# ReCAPTCHA keys
|
|
|
|
|
RECAPTCHA_SITE_KEY=""
|
|
|
|
|
RECAPTCHA_SECRET_KEY=""
|
2017-11-09 17:43:41 +02:00
|
|
|
|
2018-09-05 01:51:56 +02:00
|
|
|
## Optional settings
|
|
|
|
|
#
|
|
|
|
|
# The Conference#short_title to redirect the root URL to
|
|
|
|
|
# OSEM_ROOT_CONFERENCE=''
|
|
|
|
|
|
|
|
|
|
# log level in production environment
|
|
|
|
|
# OSEM_LOG_LEVEL='info'
|
|
|
|
|
|
|
|
|
|
# enable this to force SSL
|
|
|
|
|
# FORCE_SSL="1"
|
2018-09-04 21:25:53 +02:00
|
|
|
|
2018-09-05 01:51:56 +02:00
|
|
|
# Your skylight.io keys
|
|
|
|
|
# SKYLIGHT_AUTHENTICATION=''
|
|
|
|
|
# SKYLIGHT_PUBLIC_DASHBOARD_URL='https://oss.skylight.io/app/applications/xxxxxxxxxxxx'
|