mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
8 lines
290 B
Bash
Executable file
8 lines
290 B
Bash
Executable file
#!/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
|
|
cp config/environments/production.rb.sample config/environments/production.rb
|