mirror of
https://github.com/status-im/codimd.git
synced 2025-02-10 09:36:29 +00:00
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
|