You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
813 B
Bash
23 lines
813 B
Bash
8 years ago
|
#!/bin/bash
|
||
|
|
||
|
# Creating customize folder
|
||
|
mkdir -p customize
|
||
|
[[ ! "$(ls -A customize)" ]] && echo "Creating customize folder" \
|
||
|
&& cp -R customize.dist/* customize/ \
|
||
|
&& cp config.js.dist customize/config.js
|
||
|
|
||
|
# Linking config.js
|
||
|
[[ ! -h config.js ]] && echo "Linking config.js" && ln -s customize/config.js config.js
|
||
|
|
||
|
# Configure
|
||
|
[[ -n "$USE_SSL" ]] && echo "Using secure websockets: $USE_SSL" \
|
||
|
&& sed -i "s/useSecureWebsockets: .*/useSecureWebsockets: ${USE_SSL},/g" customize/config.js
|
||
|
|
||
|
[[ -n "$USE_SSL" ]] && echo "Using storage adapter: $STORAGE" \
|
||
|
&& sed -i "s/storage: .*/storage: ${STORAGE},/g" customize/config.js
|
||
|
|
||
|
[[ -n "$LOG_TO_STDOUT" ]] && echo "Logging to stdout: $LOG_TO_STDOUT" \
|
||
|
&& sed -i "s/logToStdout: .*/logToStdout: ${LOG_TO_STDOUT},/g" customize/config.js
|
||
|
|
||
|
|
||
|
exec node ./server.js
|