Sha256: e567c9a77c65e396cbfd34184b39e1aff13e6b6f0d6385f617f53b839055fcc2
Contents?: true
Size: 861 Bytes
Versions: 14
Compression:
Stored size: 861 Bytes
Contents
# Put server-specific environment variables here # .env is loaded by the dotenv gem on startup # Don't commit this file to Git !!! Copy from .env.example.development and modify for each machine # Application settings APP_NAME = '<%= @config.app_name %>' # Database settings DB_USER = 'user' DB_PASSWORD = 'password' # Session secret - generate with: rake secret SECRET_TOKEN = '<%= @rake_secret %>' # Where to send exceptions and other admin emails ADMIN_EMAIL = '<%= @config.admin_email %>' # Exception notification settings EXCEPTION_NOTIFICATION_EMAIL_PREFIX = '[<%= @config.class_name %>] ' EXCEPTION_NOTIFICATION_SENDER = 'server@<%= @config.domain %>' # Unicorn settings UNICORN_BEHIND_NGINX = <%= @unicorn_behind_nginx %> # UNICORN_PORT = 3000 # Redis settings REDIS_SERVER = 'localhost:6379/X' # Rails environment RAILS_ENV = 'development'
Version data entries
14 entries across 14 versions & 1 rubygems