mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-22 01:36:29 -05:00
1529d54b43
Signed-off-by: David Mehren <git@herrmehren.de>
69 lines
1.5 KiB
Bash
Executable file
69 lines
1.5 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
version_lt() { test "$(printf '%s\n' "$@" | { [ "$(uname)" = "Linux" ] && sort -V || sort -t. -k 1,1n -k 2,2n -k 3,3n -k 4,4n; } | tail -n 1)" != "$1"; }
|
|
|
|
# run command at repo root
|
|
CURRENT_PATH=$PWD
|
|
if [ -d .git ]; then
|
|
cd "$(git rev-parse --show-toplevel)"
|
|
fi
|
|
|
|
if ! type yarn > /dev/null
|
|
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
|
|
exit 1
|
|
fi
|
|
|
|
if version_lt "$(yarn --version)" '1.22.0'; then
|
|
cat <<EOF
|
|
FATAL: Your Yarn version is outdated.
|
|
|
|
Please upgrade to a version newer than 1.22.0.
|
|
See https://classic.yarnpkg.com/en/docs/install for instructions.
|
|
EOF
|
|
exit 1
|
|
fi
|
|
|
|
if version_lt "$(node --version)" 'v10.13.0'; then
|
|
cat <<EOF
|
|
FATAL: Your Node.js version is outdated.
|
|
|
|
Please upgrade to version 10.13 or higher.
|
|
We recommend running the latest LTS release.
|
|
EOF
|
|
exit 1
|
|
fi
|
|
|
|
echo "copy config files"
|
|
if [ ! -f config.json ]; then
|
|
cp config.json.example config.json
|
|
fi
|
|
|
|
if [ ! -f .sequelizerc ]; then
|
|
cp .sequelizerc.example .sequelizerc
|
|
fi
|
|
|
|
echo "install packages"
|
|
yarn install --pure-lockfile
|
|
yarn install --production=false --pure-lockfile
|
|
|
|
cat << EOF
|
|
|
|
|
|
Edit the following config file to setup HedgeDoc server and client.
|
|
Read more info at https://github.com/hedgedoc/hedgedoc#configuration-files
|
|
|
|
* config.json -- HedgeDoc config
|
|
* .sequelizerc -- db config
|
|
|
|
EOF
|
|
|
|
# change directory back
|
|
cd "$CURRENT_PATH"
|