-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.env.template
59 lines (43 loc) · 2.06 KB
/
.env.template
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
# A string containing the path to the manifest file.
# Default value is an empty string.
INPUT_MANIFEST=""
# A boolean value indicating whether to remove any existing labels that are not in the manifest file.
# Default value is "false".
INPUT_PRUNE="false"
# A string containing a GitHub personal access token with the `repo` scope.
# If not provided, the code will look for the `GITHUB_TOKEN` environment variable.
# Default value is an empty string.
INPUT_TOKEN=""
# A string containing the full name of the repository to synchronize the labels for, in the format <owner>/<repo>.
# If not provided, the code will look for the `GITHUB_REPOSITORY` environment variable.
# Default value is an empty string.
INPUT_REPOSITORY=""
####################################################################################################
# ChatGPT API Key
CHATGPT_API_KEY=<your-api-key>
# ChatGPT API URL
CHATGPT_API_URL=https://api-inference.huggingface.co/models/microsoft/DialoGPT-medium
# Open AI API Key
OPENAI_API_KEY=<your-api-key>
# Discord Bot Token
DISCORD_BOT_TOKEN=<your-bot-token>
####################################################################################################
# GitHub Personal Access Token (for accessing repositories and running actions)
GITHUB_ACCESS_TOKEN=
# GitHub Actions Secret (for encrypting and decrypting secrets used in workflows)
GITHUB_ACTIONS_SECRET=
# GitHub Username
GITHUB_USERNAME=
# GitHub Password
GITHUB_PASSWORD=
# github.com/kubbot Read-only tokens
GITHUB_TOKEN="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"
####################################################################################################
# PostgreSQL Database Connection String
POSTGRES_CONNECTION_STRING=postgres://username:password@localhost:5432/mydatabase
# MongoDB Database Connection String
MONGODB_CONNECTION_STRING=mongodb://username:password@localhost:27017/mydatabase
# Redis Database Connection String
REDIS_CONNECTION_STRING=redis://localhost:6379/0
# MySQL Database Connection String
MYSQL_CONNECTION_STRING=mysql://username:password@tcp(localhost:3306)/mydatabase