-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathvars.config
47 lines (41 loc) · 1.23 KB
/
vars.config
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
%% -*- tab-width: 4;erlang-indent-level: 4;indent-tabs-mode: nil -*-
%% ex: ft=erlang ts=4 sw=4 et
%% Platform-specific installation paths
{platform_bin_dir, "./bin"}.
{platform_data_dir, "./data"}.
{platform_etc_dir, "./etc"}.
{platform_lib_dir, "./lib"}.
{platform_log_dir, "./log"}.
%%
%% etc/app.config
%%
{stanchion_ip, "127.0.0.1"}.
{stanchion_port, 8085}.
{riak_ip, "127.0.0.1"}.
{riak_pb_port, 8087}.
{auth_bypass, false}.
{admin_key, "admin-key"}.
{admin_secret, "admin-secret"}.
%%
%% etc/vm.args
%%
{node, "[email protected]"}.
{crash_dump, "{{platform_log_dir}}/erl_crash.dump"}.
%%
%% bin/stanchion
%%
{data_dir, "{{target_dir}}/data"}.
{runner_script_dir, "\`cd \\`dirname $0\\` && /bin/pwd\`"}.
{runner_base_dir, "{{runner_script_dir}}/.."}.
{runner_etc_dir, "$RUNNER_BASE_DIR/etc"}.
{runner_log_dir, "$RUNNER_BASE_DIR/log"}.
{runner_lib_dir, "$RUNNER_BASE_DIR/lib"}.
{runner_patch_dir, "$RUNNER_BASE_DIR/lib/basho-patches"}.
{pipe_dir, "/tmp/$RUNNER_BASE_DIR/"}.
{runner_user, ""}.
{runner_wait_process, "stanchion_server_sup"}.
%% lager
{console_log_default, file}.
%% cuttlefish
{cuttlefish, "on"}.
{cuttlefish_conf, "stanchion.conf"}.