2016-01-16 01:19:42 +02:00
|
|
|
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
|
|
|
|
export NODE_ENV=production
|
|
|
|
export silent=false
|
|
|
|
export daemon=false
|
|
|
|
|
|
|
|
if [[ "$*" == npm*start* ]]; then
|
|
|
|
if [ ! -e "$BB_CONTENT/config.json" ]; then
|
2016-01-16 06:07:47 +02:00
|
|
|
if [ -e "$BB_SOURCE/config.json" ]; then
|
|
|
|
cp "$BB_SOURCE/config.json" "$BB_CONTENT/config.json"
|
|
|
|
fi
|
2016-01-16 01:19:42 +02:00
|
|
|
fi
|
|
|
|
|
2016-01-16 06:07:47 +02:00
|
|
|
if [ -e "$BB_CONTENT/config.json" ]; then
|
|
|
|
ln -sf "$BB_CONTENT/config.json" "$BB_SOURCE/config.json"
|
|
|
|
[ -d "$BB_SOURCE/node_modules/redis" ] || npm install redis
|
|
|
|
[ -d "$BB_SOURCE/node_modules/connect-redis" ] || npm install connect-redis
|
|
|
|
fi
|
2016-01-16 01:19:42 +02:00
|
|
|
|
|
|
|
exec "$@"
|
|
|
|
fi
|
|
|
|
|
|
|
|
exec "$@"
|