Sha256: c0b171117ecca87d3be3cf52617fc76f86efdddc11887fdb37a7c8c1c6e0914f
Contents?: true
Size: 1.02 KB
Versions: 3
Compression:
Stored size: 1.02 KB
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.production 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 %>' # SMTP server settings SMTP_SERVER = 'mail.<%= @config.domain %>' SMTP_USER = 'server@<%= @config.domain %>' SMTP_PASSWORD = '*****' SMTP_DOMAIN = '<%= @config.server %>' SMTP_DEFAULT_URL = '<%= @config.domain %>' # 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 = true UNICORN_WORKERS = 4 # Redis settings REDIS_SERVER = 'localhost:6379/X' # Rails environment RAILS_ENV = 'production'
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
railman-0.6.16 | templates/rails_app/.env.example.production.tt |
railman-0.6.15 | templates/rails_app/.env.example.production.tt |
railman-0.6.14 | templates/rails_app/.env.example.production.tt |