9 lines
164 B
Bash
Executable file
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
|