mirror of
https://github.com/status-im/codimd.git
synced 2025-01-11 22:14:09 +00:00
5b2320f516
Signed-off-by: BoHong Li <raccoon@hackmd.io>
19 lines
175 B
Bash
Executable File
19 lines
175 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
if [ ! -z "$DYNO" ]; then
|
|
# setup config files
|
|
cp .sequelizerc.example .sequelizerc
|
|
|
|
cat << EOF > config.json
|
|
|
|
{
|
|
"production": {
|
|
}
|
|
}
|
|
|
|
EOF
|
|
|
|
fi
|