mirror of
https://github.com/ENSL/ensl.org.git
synced 2025-01-13 21:31:28 +00:00
4a8bd8ee7d
Create docker version - Remove rubyracer, use nodejs - Add Makefile and fig.yml examples - Update to v2 circle.yml sample - Create Dockerfile - Do not use nested folders in tmp for puma
24 lines
419 B
YAML
24 lines
419 B
YAML
base: &db
|
||
adapter: mysql2
|
||
encoding: utf8
|
||
host: <%= ENV['MYSQL_HOST'] || 'localhost' %>
|
||
database: <%= ENV['MYSQL_DATABASE'] %>
|
||
username: <%= ENV['MYSQL_USERNAME'] %>
|
||
password: <%= ENV['MYSQL_PASSWORD'] %>
|
||
pool: <%= Integer(ENV['MYSQL_CONNECTION_POOL'] || 8) %>
|
||
wait_timeout: 90
|
||
reconnect: true
|
||
|
||
|
||
development:
|
||
<<: *db
|
||
|
||
test:
|
||
<<: *db
|
||
database: ensl_test
|
||
|
||
staging:
|
||
<<: *db
|
||
|
||
production:
|
||
<<: *db
|