0.2 project structure

This commit is contained in:
Feng Lee 2014-12-06 19:12:29 +08:00
parent 109e98d80c
commit 3a6ed9a876
38 changed files with 18 additions and 17 deletions

14
.gitignore vendored
View File

@ -1,6 +1,12 @@
lib .eunit
deps
!deps/.placeholder
*.o
*.beam
*.plt
erl_crash.dump
ebin ebin
var
*.log
rel/emqtt rel/emqtt
.concrete/DEV_MODE
.rebar
test/ebin/*.beam

View File

@ -9,8 +9,5 @@ deps:
clean: clean:
./rebar clean ./rebar clean
generate: dist:
./rebar generate -f ./rebar generate -f
relclean:
rm -rf rel/emqtt

0
deps/.placeholder vendored Normal file
View File

BIN
rebar vendored

Binary file not shown.

View File

@ -1,18 +1,16 @@
{require_min_otp_vsn, "R15"}. {require_min_otp_vsn, "R17"}.
{erl_opts, [debug_info, {parse_transform, lager_transform}]}. {erl_opts, [debug_info, {parse_transform, lager_transform}]}.
{erl_opts, [{i, "include"}, {erl_opts, [{i, "include"},
{src_dirs, ["src", "test"]}]}. {src_dirs, ["src"]}]}.
{sub_dirs, ["rel"]}. {sub_dirs, [
"rel",
{lib_dirs,["lib", "plugins"]}. "apps/emqtt"]}.
{deps_dir, ["lib"]}.
{deps, [ {deps, [
{lager, ".*", {git, "git://github.com/basho/lager.git", {branch, "master"}}}, {lager, ".*", {git, "git://github.com/basho/lager.git", {branch, "master"}}},
{elog, ".*", {git, "git://github.com/erylee/elog.git", {branch, "master"}}}, {esockd, ".*", {git, "git://github.com/slimpp/esockd.git", {branch, "master"}}},
{folsom, ".*", {git, "git://github.com/boundary/folsom.git", {branch, "master"}}} {mochiweb, ".*", {git, "git@github.com:slimpp/mochiweb.git", {branch, "master"}}}
]}. ]}.