Skip to content

Commit

Permalink
test: delele env
Browse files Browse the repository at this point in the history
Signed-off-by: Xinwei Xiong(cubxxw-openim) <[email protected]>
  • Loading branch information
cubxxw committed Jun 20, 2023
1 parent f1d0f19 commit 7d4ecdb
Show file tree
Hide file tree
Showing 2 changed files with 60 additions and 1 deletion.
59 changes: 59 additions & 0 deletions .env.template
Original file line number Diff line number Diff line change
@@ -0,0 +1,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
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ flycheck_*.el
# Misc
.DS_Store
*.env
.env.*
.env
dist

# files used by the developer
Expand Down

0 comments on commit 7d4ecdb

Please sign in to comment.