blob: 499b7666452737effcf47868f6b62a14fd7d7092 [file] [log] [blame]
Todd Lipcon53ae9f32009-12-07 00:42:38 +00001%%
2%% Licensed to the Apache Software Foundation (ASF) under one
3%% or more contributor license agreements. See the NOTICE file
4%% distributed with this work for additional information
5%% regarding copyright ownership. The ASF licenses this file
6%% to you under the Apache License, Version 2.0 (the
7%% "License"); you may not use this file except in compliance
8%% with the License. You may obtain a copy of the License at
9%%
10%% http://www.apache.org/licenses/LICENSE-2.0
11%%
12%% Unless required by applicable law or agreed to in writing,
13%% software distributed under the License is distributed on an
14%% "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15%% KIND, either express or implied. See the License for the
16%% specific language governing permissions and limitations
17%% under the License.
18%%
David Reissae756f42008-06-10 22:57:11 +000019%%% -*- mode:erlang -*-
alisdair sullivan06d0fa02014-08-05 19:54:57 -070020{application, thrift, [
Sergei Elin45764092022-09-23 23:21:31 +030021 % A quick description of the application.
22 {description, "Thrift bindings"},
David Reissae756f42008-06-10 22:57:11 +000023
24 % The version of the applicaton
Jens Geyeref199cc2024-09-03 01:28:31 +020025 {vsn, "0.22.0"},
David Reissae756f42008-06-10 22:57:11 +000026
Sergei Elin45764092022-09-23 23:21:31 +030027 % All modules used by the application.
28 {modules, []},
David Reissae756f42008-06-10 22:57:11 +000029
Sergei Elin45764092022-09-23 23:21:31 +030030 % All of the registered names the application uses. This can be ignored.
31 {registered, []},
David Reissae756f42008-06-10 22:57:11 +000032
Sergei Elin45764092022-09-23 23:21:31 +030033 % Applications that are to be started prior to this one. This can be ignored
34 % leave it alone unless you understand it well and let the .rel files in
35 % your release handle this.
36 {applications, [kernel, stdlib]},
David Reissae756f42008-06-10 22:57:11 +000037
Sergei Elin45764092022-09-23 23:21:31 +030038 % OTP application loader will load, but not start, included apps. Again
39 % this can be ignored as well. To load but not start an application it
40 % is easier to include it in the .rel file followed by the atom 'none'
41 {included_applications, []},
David Reissae756f42008-06-10 22:57:11 +000042
Sergei Elin45764092022-09-23 23:21:31 +030043 % configuration parameters similar to those in the config file specified
44 % on the command line. can be fetched with gas:get_env
45 {env, [
46 % If an error/crash occurs during processing of a function,
47 % should the TApplicationException serialized back to the client
48 % include the erlang backtrace?
49 {exceptions_include_traces, true}
50 ]}
alisdair sullivan06d0fa02014-08-05 19:54:57 -070051]}.