puzzle/scripts/install
2020-11-07 12:21:38 +01:00

9 lines
164 B
Bash
Executable file

#!/bin/sh
cd "$RUN_DIR/server"
npm install
if [ ! -e "$RUN_DIR/server/config.js" ]; then
cp "$RUN_DIR/server/config.example.js" "$RUN_DIR/server/config.js"
fi