mirror of https://github.com/docker/docs.git
17 lines
480 B
Bash
Executable File
17 lines
480 B
Bash
Executable File
#!/bin/bash
|
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
BASE=$DIR/..
|
|
|
|
export ROOT_URL=https://localhost:3000
|
|
export DOCKER_HOST=http://192.168.59.103
|
|
export DOCKER_PORT=2375
|
|
|
|
#export METEOR_SETTINGS=`cat $BASE/meteor/settings_dev.json`
|
|
#echo $METEOR_SETTINGS
|
|
|
|
cd $BASE/meteor
|
|
exec 3< <(mrt --settings $BASE/meteor/settings_dev.json)
|
|
sed '/App running at/q' <&3 ; cat <&3 &
|
|
NODE_ENV=development $BASE/cache/node-webkit/node-webkit.app/Contents/MacOS/node-webkit $BASE
|