forked from npr/potluck
-
Notifications
You must be signed in to change notification settings - Fork 0
/
start.sh
executable file
·118 lines (94 loc) · 3.04 KB
/
start.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
#!/bin/bash
# A generic script that can be customized using various environmental variables (@see: README.md)
# Defaults in this script are suitable for production use.
#
# ATTENTION: You probably want to use dev_start.sh script, while developing, instead.
while getopts "t" opt; do
case $opt in
t) NB_TAIL_LOGS=1;;
esac
done
if [ ! $NODE_LAUNCH_SCRIPT ]; then
export NODE_LAUNCH_SCRIPT="server.js"
fi
if [ ! -f "$NODE_LAUNCH_SCRIPT" ]; then
echo "Launch script: '$NODE_LAUNCH_SCRIPT' could not be located in the current folder. Aborting..."
exit
fi
if [ ! $NODE_ENV ]; then
export NODE_ENV=production
fi
if [ ! $NODE_CLUSTERED ]; then
export NODE_CLUSTERED=1
fi
if [ ! $NODE_SERVE_STATIC ]; then
export NODE_SERVE_STATIC=0
fi
if [ ! $NODE_HOT_RELOAD ]; then
export NODE_HOT_RELOAD=0
fi
if [ ! $NODE_CONFIG_DIR ]; then
export NODE_CONFIG_DIR="$PWD/config"
fi
if [ ! -d "$NODE_CONFIG_DIR" ]; then
mkdir $NODE_CONFIG_DIR
fi
if [ ! $NODE_LOG_DIR ]; then
export NODE_LOG_DIR="$PWD/logs"
fi
if [ ! -d "$NODE_LOG_DIR" ]; then
mkdir $NODE_LOG_DIR
fi
if [ ! -f "$NODE_LOG_DIR/forever.log" ]; then
touch $NODE_LOG_DIR/forever.log
fi
if [ ! -f "$NODE_LOG_DIR/out.log" ]; then
touch $NODE_LOG_DIR/out.log
fi
if [ ! -f "$NODE_LOG_DIR/err.log" ]; then
touch $NODE_LOG_DIR/err.log
fi
# Let's make sure you have forever/supervisor installed, if we are gonna need it:
if [ $NODE_HOT_RELOAD -eq 0 ] && [ ! `which forever` ]; then
echo "ERROR: Please install forever with:";
echo " npm install forever -g";
exit 1;
fi
if [ $NODE_HOT_RELOAD -eq 1 ] && [ ! `which supervisor` ]; then
echo "ERROR: Please install supervisor with:";
echo " npm install supervisor -g";
exit 1;
fi
# Let's make sure you NODE_HOT_RELOAD is set to one of the only two allowed values
if [ ! $NODE_HOT_RELOAD -eq 1 ] && [ ! $NODE_HOT_RELOAD -eq 0 ]; then
echo "ERROR: The only two valid values for NODE_HOT_RELOAD are '1' and '0'. You are trying to set $NODE_HOT_RELOAD";
exit 1
fi
# @TODO: not necessarily the best way to stop the process
if [ !$NODE_HOT_RELOAD ]; then
forever stop $NODE_LAUNCH_SCRIPT >/dev/null 2>&1
fi
# Now that we know there is no old version running, let's start the processes
if [ $NODE_HOT_RELOAD -eq 0 ]; then
NCMD="forever start"
NCMD="$NCMD -a"
NCMD="$NCMD -l $NODE_LOG_DIR/forever.log"
NCMD="$NCMD -o $NODE_LOG_DIR/out.log"
NCMD="$NCMD -e $NODE_LOG_DIR/err.log"
else
NCMD="supervisor -n exit -w ./lib,$NODE_CONFIG_DIR,$NODE_LAUNCH_SCRIPT"
fi
NCMD="$NCMD $NODE_LAUNCH_SCRIPT"
$NCMD
if [ $NODE_HOT_RELOAD -eq 0 ]; then
echo "--------------- NOTE: --------------"
echo "You can stop the application by running (in this folder):"
echo " > forever stop $NODE_LAUNCH_SCRIPT"
echo "You can see all Forever-running node apps by issuing:"
echo " > forever list"
echo "See more about Forever at: https://github.com/indexzero/forever"
echo "------------------------------------"
fi
if [ $NB_TAIL_LOGS ] && [ $NODE_HOT_RELOAD -eq 0 ]; then
tail -f $NODE_LOG_DIR/forever.log
fi