Skip to content

Commit

Permalink
Remove references to my hard drive
Browse files Browse the repository at this point in the history
  • Loading branch information
Evan Miller committed Aug 1, 2011
1 parent 94be208 commit a3344bc
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 3 additions & 1 deletion README.md
Expand Up @@ -6,7 +6,9 @@ This is the admin interface for Chicago Boss, which can be configured as a stand
Installation as a standalone server
-----------------------------------

This isn't very useful, but it's easy. Just type:
This isn't very useful, but it's easy. First make sure ChicagoBoss is built in the parent directory; otherwise modify start.sh and start-dev.sh to point to the ChicagoBoss ebin/ directory on your machine.

Then:

make
./start.sh
Expand Down
4 changes: 2 additions & 2 deletions start-dev.sh
@@ -1,8 +1,8 @@
#!/bin/sh
cd `dirname $0`
exec erl -pa $PWD/ebin \
-pa /Users/emiller/src/ChicagoBoss/ebin \
-pa /Users/emiller/src/ChicagoBoss/deps/*/ebin \
-pa ../ChicagoBoss/ebin \
-pa ../ChicagoBoss/deps/*/ebin \
-boss developing_app cb_admin \
-boot start_sasl -config boss -s reloader -s boss \
-sname wildbill
4 changes: 3 additions & 1 deletion start.sh
Expand Up @@ -7,6 +7,8 @@ cd `dirname $0`

# If your server is running in an untrusted environment, you should probably
# change the cookie too. (All nodes in a cluster must have the same cookie.)
exec erl -pa $PWD/ebin -pa /Users/emiller/src/ChicagoBoss/ebin -pa /Users/emiller/src/ChicagoBoss/deps/*/ebin \
exec erl -pa $PWD/ebin \
-pa ../ChicagoBoss/ebin
-pa ../ChicagoBoss/deps/*/ebin \
-boot start_sasl -config boss -s boss -setcookie abc123 -detached \
-sname john

0 comments on commit a3344bc

Please sign in to comment.