This repository has been archived by the owner on Feb 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 33
/
.env.example
71 lines (56 loc) · 2.29 KB
/
.env.example
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
# The ID of your GitHub App
APP_ID=12345
# The webhook secret for GitHub
WEBHOOK_SECRET=development
# The name of your bot
BOT_NAME=Rally
# Set the NODE_ENV
NODE_ENV=production
# Uncomment this to get verbose logging; use `info` to show less
LOG_LEVEL=info
# Go to https://smee.io/new set this to the URL that you are redirected to.
# WEBHOOK_PROXY_URL=
# Uncomment the following line and use your own GitHub Enterprise
# instance if this will not be used on https://github.com
GHE_HOST=github.example.com
# This setting should ONLY be used for testing with
# a self-signed certificate or when a proxy is causing certificate issues
# NODE_TLS_REJECT_UNAUTHORIZED=0
# Create a private key in your organization and reference the path here
PRIVATE_KEY_PATH=.ssh/rally.pem
#############################
# Rally connection settings #
#############################
# No need for http or ports,
# just the friendly info.
# Example: RALLY_SERVER=rally1.example.com
RALLY_SERVER=https://rally1.rallydev.com
# Username to auth into Rally
# NOTE: This is not required if you are using an API key,
# which is the preferred method
# Example: RALLY_USERNAME=rallyuser
#RALLY_USERNAME=
# Password to connect and access all Rally information
# NOTE: This is not required if you are using an API key,
# which is the preferred method
# Example: RALLY_PASSWORD=Som3C0olP@ssword!
#RALLY_PASSWORD=
# API Key for connecting to Rally
# Example: RALLY_API_KEY=123abCD...
RALLY_API_KEY=
# This setting will enforce this app on all repos in an org.
# Many companies will have multiple ticketing systems, and some teams
# will use GitHub for non-Scrum development. Setting this to `false` allows
# the app to be enforced on a per-repo level.
# Will return a failing test if no config exists and this is "true".
# If "false", no status is returned
# Example (true | false): ENFORCE_ALL_REPOS=false
ENFORCE_ALL_REPOS=false
# The name of a configuration repository that can contain a config
# yml file that applies to all repos within the organization. This
# will look for .github/rally.yml in the config repository. If
# a file doesn't exist, it will search for a repo-specific configuration
# If not set, this will look for a default repo at
# [ORG_NAME}/.github
# Example ORG_CONFIG_REPO_NAME=my-custom-config-repo
ORG_CONFIG_REPO_NAME=.github