27 lines
533 B
YAML
27 lines
533 B
YAML
default: &default
|
|
adapter: mysql2
|
|
pool: 5
|
|
timeout: 5000
|
|
encoding: utf8
|
|
host: 51.254.143.84
|
|
|
|
development:
|
|
<<: *default
|
|
database: robots
|
|
username: robots_usr
|
|
password: jJzQmDZsXh5WD9En
|
|
|
|
# Warning: The database defined as "test" will be erased and
|
|
# re-generated from your development database when you run "rake".
|
|
# Do not set this db to the same as development or production.
|
|
test:
|
|
<<: *default
|
|
database: robots
|
|
|
|
production:
|
|
<<: *default
|
|
database: robots
|
|
username: robots_usr
|
|
password: jJzQmDZsXh5WD9En
|
|
|