/[projects]/misc/xoa-installer/xoa-installer.sh
ViewVC logotype

Diff of /misc/xoa-installer/xoa-installer.sh

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 2957 by torben, Mon Feb 29 09:39:36 2016 UTC revision 2982 by torben, Sat Mar 19 08:24:48 2016 UTC
# Line 44  if [ "$1" == "clean" ] ; then Line 44  if [ "$1" == "clean" ] ; then
44  fi  fi
45    
46    
47    if [ ! -x "/usr/bin/curl" ] ; then
48            echo "installing curl"
49            apt-get install curl || exit
50    fi
51    
52    if [ ! -x "/usr/bin/gcc" ] ; then
53            echo "installing build-essential"
54            apt-get install  build-essential || exit
55    fi
56    
57    if [ ! -x "/usr/bin/redis-server" ] ; then
58            echo "installing redis-server"
59            apt-get install  redis-server || exit
60    fi
61    
62    if [ ! -x "/usr/bin/git" ] ; then
63            echo "installing git"
64            apt-get install git
65    fi
66            
67    
68  if [ ! -x "/usr/local/bin/n" ] ; then  if [ ! -x "/usr/local/bin/n" ] ; then
69          echo "installing node.js bootstrap"          echo "installing node.js bootstrap"
70          curl -o /usr/local/bin/n https://raw.githubusercontent.com/visionmedia/n/master/bin/n || exit          curl -o /usr/local/bin/n https://raw.githubusercontent.com/visionmedia/n/master/bin/n || exit
# Line 52  fi Line 73  fi
73    
74  if [ ! -x "/usr/local/bin/node" ] ; then  if [ ! -x "/usr/local/bin/node" ] ; then
75          echo "installing node.js"          echo "installing node.js"
76          n stable          n stable || exit
77  fi  fi
78    
79    if [ ! -x "/usr/local/bin/gulp" ] ; then
80            echo "installing gulp"
81            npm install -g gulp
82    fi
83    
84    if [ ! -x "/usr/local/bin/forever" ] ; then
85            echo "installing forever"
86            npm install -g forever
87    fi
88    
89    if [ ! -x "/usr/local/bin/node-gyp" ] ; then
90            echo "installing node-gyp"
91            npm install -g node-gyp
92    fi
93    
94    if [ ! -d "/usr/local/lib/node_modules/bcrypt" ] ; then
95            echo "installing bcrypt"
96            npm install -g bcrypt
97    fi
98    
99  if [ ! -d "xo-web" ] ; then  if [ ! -d "xo-web" ] ; then
100          git clone -b $BRANCH https://github.com/vatesfr/xo-web.git          git clone -b $BRANCH https://github.com/vatesfr/xo-web.git
# Line 76  fi Line 115  fi
115    
116    
117  # xo-server  # xo-server
118    echo "building xo-server"
119  cd xo-server  cd xo-server
120  npm install --unsafe-perm || exit  npm install || exit
121  npm run build || exit  npm run build || exit
122  cd ..  cd ..
123    
124    
125  #xo-web  #xo-web
126    echo "building xo-web"
127  cd xo-web  cd xo-web
128  npm install --unsafe-perm || exit  npm install --unsafe-perm || exit
129  npm run build || exit  npm run build || exit

Legend:
Removed from v.2957  
changed lines
  Added in v.2982

  ViewVC Help
Powered by ViewVC 1.1.20