| Christopher Piro | 094823a | 2007-07-18 00:26:12 +0000 | [diff] [blame] | 1 | %%% -*- 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 |  | 
|  | 10 | % All modules used by the application. | 
|  | 11 | {modules, | 
|  | 12 | [ | 
|  | 13 | %MODULES% | 
|  | 14 | ]}, | 
|  | 15 |  | 
|  | 16 | % All of the registered names the application uses. This can be ignored. | 
|  | 17 | {registered, []}, | 
|  | 18 |  | 
|  | 19 | % Applications that are to be started prior to this one. This can be ignored | 
|  | 20 | % leave it alone unless you understand it well and let the .rel files in | 
|  | 21 | % your release handle this. | 
|  | 22 | {applications, | 
|  | 23 | [ | 
|  | 24 | kernel, | 
|  | 25 | stdlib | 
|  | 26 | ]}, | 
|  | 27 |  | 
|  | 28 | % OTP application loader will load, but not start, included apps. Again | 
|  | 29 | % this can be ignored as well.  To load but not start an application it | 
|  | 30 | % is easier to include it in the .rel file followed by the atom 'none' | 
|  | 31 | {included_applications, []}, | 
|  | 32 |  | 
|  | 33 | % configuration parameters similar to those in the config file specified | 
|  | 34 | % on the command line. can be fetched with gas:get_env | 
| Christopher Piro | 6c46f1a | 2007-10-23 09:47:15 +0000 | [diff] [blame] | 35 | {env, [ | 
|  | 36 | {term_width, 110}, | 
|  | 37 | {force_one_line, false}, | 
|  | 38 | {omit_fmt, ["thrift ~p:new(~s) = ~s"]}, | 
|  | 39 | {gen_server_messages, true}, | 
|  | 40 | {lookup, false}                 % DNS | 
|  | 41 | ]}, | 
| Christopher Piro | 094823a | 2007-07-18 00:26:12 +0000 | [diff] [blame] | 42 |  | 
|  | 43 | % The Module and Args used to start this application. | 
| Christopher Piro | 6894029 | 2007-10-02 00:35:12 +0000 | [diff] [blame] | 44 | {mod, {thrift_app, []}} | 
| Christopher Piro | 094823a | 2007-07-18 00:26:12 +0000 | [diff] [blame] | 45 | ] | 
|  | 46 | }. |