blob: 79055ca681727e733ae689e20dec3153c0c25cf6 [file] [log] [blame]
Christopher Piro094823a2007-07-18 00:26:12 +00001%%% -*- mode:erlang -*-
2{application, %APP_NAME%,
3 [
4 % A quick description of the application.
5 {description, "Thrift bindings"},
6
7 % The version of the applicaton
8 {vsn, "%VSN%"},
9
Christopher Piro7ab31e42008-01-04 00:21:18 +000010 % All modules used by the application.
11 {modules, [
12 %MODULES%
Christopher Piro094823a2007-07-18 00:26:12 +000013 ]},
14
15 % All of the registered names the application uses. This can be ignored.
16 {registered, []},
17
18 % Applications that are to be started prior to this one. This can be ignored
Christopher Piro7ab31e42008-01-04 00:21:18 +000019 % leave it alone unless you understand it well and let the .rel files in
20 % your release handle this.
Christopher Piro094823a2007-07-18 00:26:12 +000021 {applications,
22 [
Christopher Piro7ab31e42008-01-04 00:21:18 +000023 kernel,
Christopher Piro094823a2007-07-18 00:26:12 +000024 stdlib
25 ]},
26
27 % OTP application loader will load, but not start, included apps. Again
28 % this can be ignored as well. To load but not start an application it
29 % is easier to include it in the .rel file followed by the atom 'none'
30 {included_applications, []},
31
32 % configuration parameters similar to those in the config file specified
33 % on the command line. can be fetched with gas:get_env
Christopher Piro6c46f1a2007-10-23 09:47:15 +000034 {env, [
35 {term_width, 110},
36 {force_one_line, false},
37 {omit_fmt, ["thrift ~p:new(~s) = ~s"]},
38 {gen_server_messages, true},
Christopher Piro7ab31e42008-01-04 00:21:18 +000039 {show_pid, true},
Christopher Piro6c46f1a2007-10-23 09:47:15 +000040 {lookup, false} % DNS
41 ]},
Christopher Piro094823a2007-07-18 00:26:12 +000042
43 % The Module and Args used to start this application.
Christopher Piro68940292007-10-02 00:35:12 +000044 {mod, {thrift_app, []}}
Christopher Piro094823a2007-07-18 00:26:12 +000045 ]
46}.