7 lines
142 B
Bash
Executable file
7 lines
142 B
Bash
Executable file
#!/bin/sh
|
|
|
|
npm install
|
|
|
|
if [ ! -e "$RUN_DIR/server/config.js" ]; then
|
|
cp "$RUN_DIR/server/config.example.js" "$RUN_DIR/server/config.js"
|
|
fi
|