skill-assessment-app/config/application.yml.sample

24 lines
524 B
Plaintext
Raw Normal View History

2016-08-01 20:44:39 -05:00
# Add configuration values here, as shown below.
defaults: &defaults
mysql_host: "localhost"
mysql_usr: "user"
mysql_pwd: "password"
mailjet_key: "api-key"
mailjet_secret: "api-secret"
default_mail_from: "skills-assessment@dev.perficientxd.com"
2016-08-02 07:58:58 -05:00
full_app_url: "localhost:3000"
2016-08-01 20:44:39 -05:00
development:
<<: *defaults
test:
<<: *defaults
production:
<<: *defaults
mysql_usr: "user"
mysql_pwd: "password!"
secret_key_base: "super-long-secret-key-base"
2016-08-02 07:58:58 -05:00
full_app_url: "dev.perficientxd.com/Skills-Assessment/"