mirror of https://github.com/docker/docs.git
15 lines
459 B
Bash
Executable File
15 lines
459 B
Bash
Executable File
#!/bin/bash
|
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
BASE=$DIR/..
|
|
|
|
export ROOT_URL=https://localhost:3000
|
|
export DIR=$BASE
|
|
|
|
cd $BASE/meteor
|
|
exec 3< <(meteor --settings $BASE/meteor/settings_dev.json)
|
|
sed '/App running at/q' <&3 ; cat <&3 &
|
|
NODE_ENV=development $BASE/cache/atom-shell/Atom.app/Contents/MacOS/Atom $BASE
|
|
kill $(ps aux | grep '.*node.*kitematic' | awk '{print $2}')
|
|
kill $(ps aux | grep '.*mongod.*kitematic' | awk '{print $2}')
|