-
Notifications
You must be signed in to change notification settings - Fork 0
/
.development.env
27 lines (22 loc) · 925 Bytes
/
.development.env
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
# ------------------------------------------------------------------------------
# GENERAL
# ------------------------------------------------------------------------------
# Defines the rails environment (production, development or test)
RAILS_ENV=development
# Log to stdout by default
RAILS_LOG_TO_STDOUT=0
# Puma serves each request in a thread from an interal thread pool.
# Default is set to 5 threads.
RAILS_MAX_THREADS=5
# Specifies the number of 'workers' to boot in clustered mode.
# Workers are forked web server processes. If using threads and workers together
# the concurrency of the application would be max `threads` * `workers`.
WEB_CONCURRENCY=0
# ------------------------------------------------------------------------------
# POSTGRESQL
# ------------------------------------------------------------------------------
PG_HOST=postgres
PG_PORT=5432
PG_USERNAME=postgres
PG_PASSWORD=postgres
PG_POOL=5