2019-10-28 06:48:04 +01:00
|
|
|
# Inherit config from this other config file
|
|
|
|
# so I only need to overwrite some values
|
2019-10-31 06:14:51 +01:00
|
|
|
inherits: dev
|
2019-10-28 06:48:04 +01:00
|
|
|
|
2019-10-30 08:27:11 +01:00
|
|
|
app_name: "{{app_name}} Production"
|
2019-09-27 08:19:24 +02:00
|
|
|
host_port: 0.0.0.0:8080
|
|
|
|
web_ui: false
|
|
|
|
|
|
|
|
# debug, info, warn, error, fatal, panic, disable
|
|
|
|
log_level: "info"
|
2019-11-07 08:37:24 +01:00
|
|
|
# When production mode is 'true' only queries
|
|
|
|
# from the allow list are permitted.
|
|
|
|
# When it's 'false' all queries are saved to the
|
|
|
|
# the allow list in ./config/allow.list
|
|
|
|
production: true
|
2019-09-27 08:19:24 +02:00
|
|
|
|
|
|
|
# Throw a 401 on auth failure for queries that need auth
|
2019-11-02 22:13:17 +01:00
|
|
|
auth_fail_block: true
|
2019-09-27 08:19:24 +02:00
|
|
|
|
|
|
|
# Latency tracing for database queries and remote joins
|
|
|
|
# the resulting latency information is returned with the
|
|
|
|
# response
|
|
|
|
enable_tracing: true
|
|
|
|
|
|
|
|
# File that points to the database seeding script
|
|
|
|
# seed_file: seed.js
|
|
|
|
|
|
|
|
# Path pointing to where the migrations can be found
|
|
|
|
# migrations_path: migrations
|
|
|
|
|
|
|
|
# Postgres related environment Variables
|
|
|
|
# SG_DATABASE_HOST
|
|
|
|
# SG_DATABASE_PORT
|
|
|
|
# SG_DATABASE_USER
|
|
|
|
# SG_DATABASE_PASSWORD
|
|
|
|
|
|
|
|
# Auth related environment Variables
|
|
|
|
# SG_AUTH_RAILS_COOKIE_SECRET_KEY_BASE
|
|
|
|
# SG_AUTH_RAILS_REDIS_URL
|
|
|
|
# SG_AUTH_RAILS_REDIS_PASSWORD
|
|
|
|
# SG_AUTH_JWT_PUBLIC_KEY_FILE
|
|
|
|
|
|
|
|
# inflections:
|
|
|
|
# person: people
|
|
|
|
# sheep: sheep
|
|
|
|
|
|
|
|
auth:
|
|
|
|
# Can be 'rails' or 'jwt'
|
|
|
|
type: rails
|
2019-10-30 08:27:11 +01:00
|
|
|
cookie: _{{app_name_slug}}_session
|
2019-09-27 08:19:24 +02:00
|
|
|
|
|
|
|
rails:
|
|
|
|
# Rails version this is used for reading the
|
|
|
|
# various cookies formats.
|
|
|
|
version: 5.2
|
|
|
|
|
|
|
|
# Found in 'Rails.application.config.secret_key_base'
|
|
|
|
secret_key_base: 0a248500a64c01184edb4d7ad3a805488f8097ac761b76aaa6c17c01dcb7af03a2f18ba61b2868134b9c7b79a122bc0dadff4367414a2d173297bfea92be5566
|
|
|
|
|
|
|
|
# Remote cookie store. (memcache or redis)
|
|
|
|
# url: redis://127.0.0.1:6379
|
|
|
|
# password: test
|
|
|
|
# max_idle: 80,
|
|
|
|
# max_active: 12000,
|
|
|
|
|
|
|
|
# In most cases you don't need these
|
|
|
|
# salt: "encrypted cookie"
|
|
|
|
# sign_salt: "signed encrypted cookie"
|
|
|
|
# auth_salt: "authenticated encrypted cookie"
|
|
|
|
|
|
|
|
# jwt:
|
|
|
|
# provider: auth0
|
|
|
|
# secret: abc335bfcfdb04e50db5bb0a4d67ab9
|
|
|
|
# public_key_file: /secrets/public_key.pem
|
|
|
|
# public_key_type: ecdsa #rsa
|
|
|
|
|
|
|
|
database:
|
|
|
|
type: postgres
|
|
|
|
host: db
|
|
|
|
port: 5432
|
2019-10-25 07:39:59 +02:00
|
|
|
dbname: {{app_name_slug}}_development
|
2019-09-27 08:19:24 +02:00
|
|
|
user: postgres
|
|
|
|
password: ''
|
|
|
|
#pool_size: 10
|
|
|
|
#max_retries: 0
|
2019-11-05 05:44:42 +01:00
|
|
|
#log_level: "debug"
|
|
|
|
|
|
|
|
# Set session variable "user.id" to the user id
|
|
|
|
# Enable this if you need the user id in triggers, etc
|
|
|
|
set_user_id: false
|