forked from DMPRoadmap/roadmap
-
Notifications
You must be signed in to change notification settings - Fork 13
/
.env.mysql2
51 lines (43 loc) · 1.88 KB
/
.env.mysql2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# DMPRoadmap dotenv file
DMPROADMAP_SERVER_HOST=http://localhost:3000
# Rails log level
RAILS_LOG_LEVEL=debug
# Whether or not Rails should log to STDOUT. If false it will log to `./logs/[env].log`
RAILS_LOG_TO_STDOUT=true
# Whether or not Rails will be serving your static assets
RAILS_SERVE_STATIC_FILES=false
# Maximum number of Puma threads
RAILS_MAX_THREADS=5
# Maximum number of Puma workers
WEB_CONCURRENCY=2
# The port puma will use to host the Rails app
PORT=3000
# Rails 6.1+ has a white-list of valid domains. You must set this for your production env!
DMPROADMAP_HOST=localhost
# The location of the wkhtmltopdf app. Once bundler has installed it, you can find it with
# `which wkhtmltopdf` on linux/osx systems.
DMPROADMAP_WKHTMLTOPDF_PATH=/usr/local/bin/wkhtmltopdf
# Database settings.
DMPROADMAP_DATABASE_HOST=127.0.01
DMPROADMAP_DATABASE_ADAPTER=mysql2
DMPROADMAP_DATABASE_NAME=dmp
DMPROADMAP_DATABASE_PORT=3306
DMPROADMAP_DATABASE_POOL_SIZE=16
# Whether or not the Dragonfly gem should use AWS S3 to store logos. If 'false' the logos will
# be stored on the local disk. If true, you must provide the `AWS_` prefixed values.
DMPROADMAP_DRAGONFLY_AWS=false
DMPROADMAP_DRAGONFLY_URL_SCHEME=
DMPROADMAP_DRAGONFLY_BUCKET=
DMPROADMAP_DRAGONFLY_ROOT_PATH=
# If you have a Rollbar account and want to redcord errors there, add your token here
DMPROADMAP_ROLLBAR_ACCESS_TOKEN=
DMPROADMAP_ROLLBAR_ENV=
# Translation IO variables. The Domain can be either `app` or `client` and is typically defined
# when running `bin/rails translations:sync DOMAIN=app`. `client` will use any of your
# customized content in ./app/views/branded and `app` is for the core roadmap translations.
# Include your Translation.io API key for the appropriate domains:
# app => TRANSLATION_API_ROADMAP
# client => TRANSLATION_API_CLIENT
# DOMAIN=app
# DMPROADMAP_TRANSLATION_IO_KEY_APP=
# DMPROADMAP_TRANSLATION_IO_KEY_CLIENT=