bash deployment system

This commit is contained in:
Mark Moser
2016-09-23 14:46:04 -05:00
parent 5ba65f0f83
commit 87e0406a03
7 changed files with 140 additions and 7 deletions

View File

@ -17,6 +17,7 @@ test:
production:
<<: *defaults
mysql_db: "database name"
mysql_usr: "user"
mysql_pwd: "password!"
secret_key_base: "super-long-secret-key-base"

View File

@ -49,6 +49,6 @@ test:
#
production:
<<: *default
database: skill-assessment-app_production
database: <%= ENV['mysql_db'] %>
username: <%= ENV['mysql_usr'] %>
password: <%= ENV['mysql_pwd'] %>