-
Notifications
You must be signed in to change notification settings - Fork 20
/
.env.example
45 lines (41 loc) · 1.12 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
WEBHOOK_PROXY_URL=https://smee.io/--------
# GitHub API endpoint
API_BASE_URL="https://api.github.com"
#
# GitHub User's USERNAME
#
GH_USER=""
#
# GitHub User's PERSONAL ACCESS TOKEN which can be created here:
#
# https://github.com/settings/tokens/new?scopes=public_repo,read:user
#
GH_USER_TOKEN=""
#
# Once you've created a GITHUB APP here:
#
# https://github.com/settings/apps/new
#
# you'll see an "app id", "client id" and "client secret" at the top of the
# settings page
#
# https://github.com/settings/apps/YOUR_APP_NAME#private-key
#
# for your app. Fill in those values below
GH_APP_ID=""
GH_APP_CLIENT_ID=""
GH_APP_CLIENT_SECRET=""
#
# At the very bottom of your app's settings page
#
# https://github.com/settings/apps/YOUR_APP_NAME#private-key
#
# you'll find a "Private Keys"section, with a "Generate Private Key" button.
# Clicking it will download a file to your computer.
#
# (1) Place that file in the `./private` folder so that it will be ignored by Git.
# (2) Ensure that the GH_APP_PRIVATE_KEY_PATH variable leads to the relative path
# of that file
#
#
GH_APP_PRIVATE_KEY_PATH="./private/gh-app.key"