-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env
36 lines (31 loc) · 953 Bytes
/
.env
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
# THIS FILE IS TO FINE TUNE THE SCRIPT. DO NOT EDIT UNLESS YOU KNOW WHAT YOU
# ARE DOING.
#
# =========================================================================== #
#
# TO ENABLE/DISABLE A FEATURE, SET THE VALUE AND EXPORT IT. FOR SAFETY REASONS,
# KEEP THE ENVIRONMENT VARIABLES READONLY.
#
# EXAMPLE:
# readonly FEATURE_NAME=true
# export FEATURE_NAME
#
# =========================================================================== #
# DESC: GitHub Actions Runner Download URL
# VALU: String
# readonly ACTIONS_RUNNER_DOWNLOAD_URL=""
export ACTIONS_RUNNER_DOWNLOAD_URL
# DESC: Your Sys init config file
# VALU: String
# readonly CUSTOM_INIT_CONFIG=""
export CUSTOM_INIT_CONFIG
# DESC: Should we setup the firewall?
# VALU: Boolean (yes|true)
readonly FIREWALL_SETUP="true"
export FIREWALL_SETUP
# DESC: Enable DEBUG mode
# VALU: Boolean (yes|true)
readonly DEBUG="false"
export DEBUG
# vim: syntax=sh cc=80 tw=79 ts=4 sw=4 sts=4 et sr
#