2013-10-08 08:52:29 -04:00
|
|
|
#!/bin/sh
|
|
|
|
# This script installs the required example config files before buildpack compilation.
|
|
|
|
|
|
|
|
set -ex
|
|
|
|
|
|
|
|
cp config/database.yml.production-sample config/database.yml
|
|
|
|
cp config/redis.yml.sample config/redis.yml
|
2013-10-08 10:20:57 -04:00
|
|
|
cp config/environments/production.rb.sample config/environments/production.rb
|