1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
| {erl_opts, [ debug_info ,{i, "./include"} ,{d, 'NOTEST', true} ,{parse_transform, lager_transform} ]}.
{rebar_packages_cdn, "https://hexpm.upyun.com"}. {plugins, [ {rebar3_erlydtl_plugin, ".*", {git, "https://github.com/tsloughter/rebar3_erlydtl_plugin.git", {branch, "master"}}} ]}. {deps, [ {apns, {git, "git@github:zhaoweiguo/apns.git"}}, {eredis, {git, "https://github.com/wooga/eredis.git", {tag, "v1.1.0"}}}, {brod, {git, "https://github.com/klarna/brod.git", {tag, "3.4.0"}}} ... ... ]}. {erlydtl_opts,[ {doc_root, "templates"} ]}. {provider_hooks, [ {pre, [{compile, {erlydtl, compile}}]} ]}. {relx, [{ release, { proj, "0.1.0" }, [proj, ... ... sasl]}, {sys_config, "./config/sys.config"}, {vm_args, "./config/vm.args"}, {dev_mode, false}, {include_erts, false},
{extended_start_script, true} ]}. {profiles, [{ prod, [ { erl_opts
,[no_debug_info] }, {relx, [ {dev_mode, false}, {include_erts, true} ]} ] }] }.
|