Sha256: aff6a975b893752cf53a822f2f4b6a9549d1dd17fd2a458852ad025bca881420

Contents?: true

Size: 1.09 KB

Versions: 11

Compression:

Stored size: 1.09 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 %>'

# CDN host to use for static assets
CDN_HOST = '*****.cloudfront.net'

# Unicorn settings
UNICORN_BEHIND_NGINX = true
UNICORN_WORKERS = 4

# Redis settings
REDIS_SERVER = 'localhost:6379/X'

# Rails environment
RAILS_ENV = 'production'

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
railman-1.0.6 templates/rails_app/.env.example.production.tt
railman-1.0.5 templates/rails_app/.env.example.production.tt
railman-1.0.4 templates/rails_app/.env.example.production.tt
railman-1.0.3 templates/rails_app/.env.example.production.tt
railman-1.0.2 templates/rails_app/.env.example.production.tt
railman-1.0.1 templates/rails_app/.env.example.production.tt
railman-1.0.0 templates/rails_app/.env.example.production.tt
railman-0.6.20 templates/rails_app/.env.example.production.tt
railman-0.6.19 templates/rails_app/.env.example.production.tt
railman-0.6.18 templates/rails_app/.env.example.production.tt
railman-0.6.17 templates/rails_app/.env.example.production.tt