-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathrebar.config
22 lines (16 loc) · 960 Bytes
/
rebar.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{erl_opts, [debug_info]}.
{deps, [grpcbox, opencensus]}.
{project_plugins, [grpcbox_plugin]}.
{grpc, [{protos, ["proto/opencensus-proto/src/opencensus/proto/agent/trace/v1",
"proto/opencensus-proto/src/opencensus/proto/agent/metrics/v1"]},
{service_modules, [{'opencensus.proto.agent.trace.v1.TraceService', "oc_trace"},
{'opencensus.proto.agent.metrics.v1.MetricsService', "oc_metrics"}]},
{gpb_opts, [{module_name_suffix, "_pb"},
{i, "proto/opencensus-proto/src/"},
%% disable type specs since it tries to redefine module()
{type_specs, false}]}]}.
{profiles, [{test, [{erl_opts, [nowarn_export_all]}]}]}.
{xref_checks, [undefined_function_calls, undefined_functions,
deprecated_function_calls, deprecated_functions]}.
{shell, [{apps, [opencensus_service, opencensus]},
{config, "config/example.config"}]}.