Skip to content

Commit

Permalink
Merge pull request #7555 from RocketChat/improve-build-example
Browse files Browse the repository at this point in the history
[FIX] Improve build script example
  • Loading branch information
rodrigok committed Jul 25, 2017
2 parents c2795ca + 674dd3d commit a07e71a
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 16 deletions.
32 changes: 32 additions & 0 deletions example-build-run.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
#!/bin/bash
set -x
set -euvo pipefail
IFS=$'\n\t'

# Requies Node.js version 4.x
# Do not run as root

DEPLOY_DIR=/var/www/rocket.chat

### BUILD
meteor npm install

# on the very first build, meteor build command should fail due to a bug on emojione package (related to phantomjs installation)
# the command below forces the error to happen before build command (not needed on subsequent builds)
set +e
meteor add rocketchat:lib
set -e

meteor build --server-only --directory $DEPLOY_DIR

### RUN
cd $DEPLOY_DIR/bundle/programs/server
npm install

cd $DEPLOY_DIR/bundle
NODE_ENV=production \
PORT=3000 \
ROOT_URL=http://localhost:3000 \
MONGO_URL=mongodb://localhost:27017/rocketchat \
MONGO_OPLOG_URL=mongodb://localhost:27017/local \
node main.js
16 changes: 0 additions & 16 deletions example-build.sh

This file was deleted.

0 comments on commit a07e71a

Please sign in to comment.