Skip to content

Instantly share code, notes, and snippets.

@ixmatus
Last active August 29, 2015 14:11
Show Gist options
  • Save ixmatus/e7e495112c4ff71e513d to your computer and use it in GitHub Desktop.
Save ixmatus/e7e495112c4ff71e513d to your computer and use it in GitHub Desktop.
{cover_enabled, true}.
{erl_opts, [ debug_info
, {i, "deps/*/include"}
, {i, "apps/*/include"}
, {i, "apps/include"}
]}.
{edoc_opts, [{preprocess, true}]}.
{lib_dirs, [ "deps"
, "apps"
]}.
{sub_dirs, [ "apps/http_api"
, "apps/amqp_api"
, "apps/dimmer"
, "apps/wifi"
]}.
{deps, [
{cowboy, "1.0.1", {git, "git://github.com/extend/cowboy.git", {tag, "1.0.0"}}},
{jsx, "2.3.0", {git, "git://github.com/talentdeficit/jsx.git", {branch, "develop"}}},
{rabbit_common, ".*", {git, "git://github.com/ixmatus/rabbit_common.git", {branch, "master"}}},
{amqp_client, "3.4.0", {git, "git://github.com/jbrisbin/amqp_client.git", {tag, "rabbitmq-3.4.0-community"}}},
{iso8601, "1.1.1", {git, "git://github.com/seansawyer/erlang_iso8601.git",{tag, "1.1.1"}}},
{serial, "1.0.0", {git, "https://github.com/plumlife/plumserial.git", {branch, "master"}}}
]}.
{relx,
[ {extended_start_script, false}
, {include_src, false}
, {vm_args, "./config/vm.args"}
, {sys_config, "./config/sys.config"}
, {root_dir, "/opt/arm/lib/erlang"}
, {include_erts, "/opt/arm/lib/erlang"}
, {lib_dirs, ["./ebin", "./apps/*/ebin"]}
, {release, {lightpad, "1.0.0"},
[ kernel
, stdlib
, sasl
, xmerl
, asn1
, public_key
, crypto
, ssl
, cowboy
, ranch
, lightpad
]
}
]
}.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment