HackMD/bin/setup

48 lines
941 B
Plaintext
Raw Permalink Normal View History

2016-10-05 03:21:19 +00:00
#!/bin/bash
set -e
2016-10-05 03:21:19 +00:00
# run command at repo root
CURRENT_PATH=$PWD
2016-10-14 11:28:54 +00:00
if [ -d .git ]; then
2017-10-10 11:36:37 +00:00
cd "$(git rev-parse --show-toplevel)"
2016-10-14 11:28:54 +00:00
fi
2016-10-05 03:21:19 +00:00
if ! type yarn > /dev/null
2016-10-05 03:21:19 +00:00
then
cat << EOF
yarn is not installed, please install Node.js, npm and yarn.
Read more on Node.js official website: https://nodejs.org
And for yarn package manager at: https://yarnpkg.com/en/
Setup will not be run
EOF
2016-10-05 03:21:19 +00:00
exit 0
fi
echo "copy config files"
2016-10-05 04:12:21 +00:00
if [ ! -f config.json ]; then
cp config.json.example config.json
fi
if [ ! -f .sequelizerc ]; then
cp .sequelizerc.example .sequelizerc
fi
2016-10-05 03:21:19 +00:00
echo "install packages"
yarn install --pure-lockfile
yarn install --production=false --pure-lockfile
2016-10-05 03:21:19 +00:00
cat << EOF
Edit the following config file to setup CodiMD server and client.
Read more info at https://github.com/codimd/server#configuration-files
2016-10-05 03:21:19 +00:00
* config.json -- CodiMD config
2016-10-05 04:07:07 +00:00
* .sequelizerc -- db config
2016-10-05 03:21:19 +00:00
EOF
# change directory back
2017-10-10 11:36:37 +00:00
cd "$CURRENT_PATH"