-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
39 lines (35 loc) · 1.6 KB
/
Copy path.env.example
File metadata and controls
39 lines (35 loc) · 1.6 KB
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
# App -----------------------------------
NEXT_PUBLIC_APP_URL=http://localhost:3006
BETTER_AUTH_URL=http://localhost:3006
# Space-separated list of extra allowed origins (leave empty for same-origin only)
BETTER_AUTH_TRUSTED_ORIGINS=
# Auth ----------------------------------
# Generate with: openssl rand -hex 32
BETTER_AUTH_SECRET=
# Database --------------------------------
# Next.js standalone output chdir's into .next/standalone/ at startup, so a
# relative path here resolves against the wrong directory in production.
# Use an absolute path in .env.production (relative is fine for local dev).
DATABASE_PATH=./db/tasks.db
# GitHub App -------------------------------
# One GitHub App does double duty: user sign-in (OAuth) AND org automation
# (webhooks + API). Create it under the org: Settings -> Developer settings
# -> GitHub Apps -> New GitHub App. See docs/guides/github-app.md.
GITHUB_APP_ID=
GITHUB_APP_CLIENT_ID=
GITHUB_APP_CLIENT_SECRET=
# PEM private key downloaded from the App's settings page. Paste with literal
# "\n" line breaks (single line) - the app un-escapes them at startup.
GITHUB_APP_PRIVATE_KEY=
# Settings -> Webhooks -> Secret, also used to sign outgoing verification.
GITHUB_WEBHOOK_SECRET=
# Org that owns every repo this tool will ever touch.
GITHUB_ORG=trickfirerobotics
# Sentry --------------------------------
# DSN from sentry.io -> your project -> Settings -> Client Keys
NEXT_PUBLIC_SENTRY_DSN=
# Auth token from sentry.io -> Settings -> Auth Tokens (needed at build time for source maps)
SENTRY_AUTH_TOKEN=
# Org slug and project slug from your Sentry project URL
SENTRY_ORG=
SENTRY_PROJECT=