mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 12:03:35 +08:00
8 lines
212 B
Bash
8 lines
212 B
Bash
|
#!/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
|