-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrebar.config
More file actions
67 lines (59 loc) · 2.16 KB
/
Copy pathrebar.config
File metadata and controls
67 lines (59 loc) · 2.16 KB
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
{deps,
[
%% for ag_monitor
{prometheus_httpd , ".*", {git, "https://github.com/AmazeGame/prometheus-httpd.git", {branch,"master"}}},
{prometheus_process_collector , ".*", {git, "https://github.com/AmazeGame/prometheus_process_collector.git", {branch,"master"}}},
%% for ag_engine
{gpb,".*", {git, "https://github.com/AmazeGame/gpb.git", {branch,"master"}}},
{msgpack, ".*", {git, "https://github.com/AmazeGame/msgpack-erlang.git",{branch,"master"}}},
%% for ag_gateway
{cowboy , ".*" ,{git, "https://github.com/AmazeGame/cowboy.git",{branch,"master"}}},
{gun , ".*" ,{git, "https://github.com/AmazeGame/gun.git", {branch,"master"}}},
%% for metable & agb_json
{jsx, ".*", {git, "https://github.com/AmazeGame/jsx.git", {branch,"main"}}},
{jiffy, ".*", {git, "https://github.com/AmazeGame/jiffy.git", {tag, "1.0.9"}}},
%% for database
{mysql_poolboy, ".*", {git, "https://github.com/AmazeGame/mysql-otp-poolboy.git",{branch,"master"}}},
{eredis_cluster, ".*", {git, "https://github.com/AmazeGame/eredis_cluster.git", {branch,"master"}}},
{mongodb,".*", {git, "https://github.com/AmazeGame/mongodb-erlang.git", {branch,"master"}}},
%% node
{gen_batch_server, ".*", {git ,"https://github.com/AmazeGame/gen-batch-server.git" , {tag,"v0.8.4"}}},
{aten, ".*", {git ,"https://github.com/AmazeGame/aten.git" , {tag,"v0.5.7"}}},
{ra, ".*",{git, "https://github.com/AmazeGame/ra.git", {branch,"main"}}}
]
}.
{shell, [
{apps,[
ag_initiator,
ag_monitor,
ag_eventdispatcher,
ag_debuglogger,
ag_config,
ag_metable,
ag_database,
ag_idcreator,
ag_bizlogger,
ag_cluster,
ag_node,
ag_engine,
ag_gateway
]}
]}.
{erl_opts, [
debug_info,
warn_export_vars,
warn_shadow_vars,
warn_obsolete_guard,
warn_export_all,
warn_unused_import,
warn_unused_vars,
warn_unused_function,
warn_bif_clash,
warn_unused_record,
warn_deprecated_function,
nowarn_shadow_vars
]}.
{dist_node, [
{setcookie, 'amazegame_cookie'}
,{name, 'amazegame@127.0.0.1'}
]}.