Sha256: 7514c502ee03ecba57ea24f251eef5adc01b5554681dabf3395adf8e9848e1b6

Contents?: true

Size: 941 Bytes

Versions: 3

Compression:

Stored size: 941 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.production and modify for each machine

# Application settings
APP_NAME = '<%= 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.<%= @domain %>'
SMTP_USER = 'server@<%= @domain %>'
SMTP_PASSWORD = '*****'
SMTP_DOMAIN = '<%= @domain %>'
SMTP_DEFAULT_URL = '<%= @domain %>'


# Where to send exceptions and other admin emails
ADMIN_EMAIL = '<%= @admin_email %>'


# Exception notification settings
EXCEPTION_NOTIFICATION_EMAIL_PREFIX = '[<%= @class_name %>] '
EXCEPTION_NOTIFICATION_SENDER = 'server@<%= @domain %>'


# Unicorn settings
UNICORN_BEHIND_NGINX = true
UNICORN_WORKERS = 4


# Rails environment
RAILS_ENV = 'production'

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
railman-0.2.0 templates/rails_app/.env.example.production.tt
railman-0.1.2 templates/rails_app/.env.example.production.tt
railman-0.1.1 templates/rails_app/.env.example.production.tt