forked from PizzaPlace/gitcord
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
wrangler.toml
21 lines (17 loc) · 1.12 KB
/
wrangler.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
name = "gitcord-main"
main = "./build/index.js"
workers_dev = true
compatibility_date = "2022-12-18"
kv_namespaces = [{ binding = "DB", id = "f9b5195ff25d45aa9d77999ecca8d7e4" }] # Change this with your own KV namespace ID.
[build]
command = "npm run build"
[vars]
# Sensitive data should be stored in the worker itself as an encrypted value... do NOT commit your secrets to a public source control service.
# You can use the `wrangler` command to set your environment variables as so:
# - `wrangler secret put <key>` where key is the environment variable name.
#
# Sensitive environment variables:
# - GITHUB_WEBHOOK_SECRET - your secret for webhooks, https://generate-secret.vercel.app/32 if you want a nice secure secret.
# - DISCORD_WEBHOOK - your discord webhook link, remember to make sure the webhook points to a forum channel.
IGNORED_USERS = "renovate[bot],linear[bot],changeset-bot[bot],socket-security[bot],buapebot" # Users to ignore, separated by commas, nobody wants to see renovate's PRs.
REDIRECT_URL = "https://github.com/buape" # The URL the user will be redirected to if they visit the Cloudflare Worker route directly.