summaryrefslogtreecommitdiff
path: root/lib/erl/src/thrift.app.src
blob: 28b8cb5ba0c0563bf89bc074b497463327327d65 (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
%%
%% Licensed to the Apache Software Foundation (ASF) under one
%% or more contributor license agreements. See the NOTICE file
%% distributed with this work for additional information
%% regarding copyright ownership. The ASF licenses this file
%% to you under the Apache License, Version 2.0 (the
%% "License"); you may not use this file except in compliance
%% with the License. You may obtain a copy of the License at
%%
%%   http://www.apache.org/licenses/LICENSE-2.0
%%
%% Unless required by applicable law or agreed to in writing,
%% software distributed under the License is distributed on an
%% "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
%% KIND, either express or implied. See the License for the
%% specific language governing permissions and limitations
%% under the License.
%%
%%% -*- mode:erlang -*-
{application, thrift, [
  % A quick description of the application.
  {description, "Thrift bindings"},

  % The version of the applicaton
  {vsn, "1.0.0-dev"},

  % All modules used by the application.
  {modules, [
    thrift_base64_transport,
    thrift_binary_protocol,
    thrift_buffered_transport,
    thrift_client_util,
    thrift_client,
    thrift_disk_log_transport,
    thrift_file_transport,
    thrift_framed_transport,
    thrift_http_transport,
    thrift_json_parser,
    thrift_json_protocol,
    thrift_memory_buffer,
    thrift_processor,
    thrift_protocol,
    thrift_reconnecting_client,
    thrift_server,
    thrift_service,
    thrift_socket_server,
    thrift_socket_transport,
    thrift_transport_state_test,
    thrift_transport
  ]},

  % All of the registered names the application uses. This can be ignored.
  {registered, []},

  % Applications that are to be started prior to this one. This can be ignored
  % leave it alone unless you understand it well and let the .rel files in
  % your release handle this.
  {applications, [kernel, stdlib]},

  % OTP application loader will load, but not start, included apps. Again
  % this can be ignored as well.  To load but not start an application it
  % is easier to include it in the .rel file followed by the atom 'none'
  {included_applications, []},

  % configuration parameters similar to those in the config file specified
  % on the command line. can be fetched with gas:get_env
  {env, [
    % If an error/crash occurs during processing of a function,
    % should the TApplicationException serialized back to the client
    % include the erlang backtrace?
    {exceptions_include_traces, true}
  ]}
]}.