summaryrefslogtreecommitdiff
path: root/src/rvi_core.app.src
blob: 93fa67acb0c535a3ca628ceabe0a3d24caad9e5a (plain)
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
%% -*- erlang -*-
%%
%% Copyright (C) 2014, Jaguar Land Rover
%%
%% This program is licensed under the terms and conditions of the
%% Mozilla Public License, version 2.0.  The full text of the 
%% Mozilla Public License is at https://www.mozilla.org/MPL/2.0/
%%


%% -*- erlang -*-
{application, rvi_core,
 [
  {description, ""},
  {vsn, "0.5.0"},
  {registered, []},
  {applications, [
                  kernel,
                  stdlib,
		  rvi_common,
		  service_discovery,
		  schedule,
		  lager,
		  service_edge,
		  authorize,
		  proto_json,
		  proto_bert
                 ]},
  {mod, { rvi_app, []}},
  {start_phases, [{announce, []}]},
  {env,
   [
    %% The following settings default to a self-signing node (good for testing)
    %% Override these values in the setup config.
    {provisioning_key, "$PRIV_DIR/keys/self_provisioning_key.pem"},
    {authorize_jwt, "$PRIV_DIR/keys/authorize.jwt"},
    {cert_dir, "$DATA_DIR/certs"}
   ]}
 ]}.