Skip to content

Instantly share code, notes, and snippets.

@chapani
Created September 18, 2012 20:45
Show Gist options
  • Save chapani/3745778 to your computer and use it in GitHub Desktop.
Save chapani/3745778 to your computer and use it in GitHub Desktop.
all: deps
app: get-deps
@./rebar compile #skip_deps=true
get-deps:
@./rebar get-deps
clean:
@./rebar clean
rm -f erl_crash.dump
dist-clean: clean
webstart: app
exec erl \
-sname bweb \
-pa apps/*/ebin \
-pa deps/*/ebin \
-boot start_sasl \
-config apps/briak/priv/app.config \
-s buser \
-s bcore \
-s briak \
-s bcrypt \
-s crypto \
-s bweb
proxystart:
@haproxy -f hp.cfg
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment