-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
62 lines (41 loc) · 2.86 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# Environment variables
# Required: Set the base URL of the application. Mostly used for the SEO tags. No trailing slash.
NEXT_PUBLIC_BASE_URL=
# Optional: Set the landing page URL of the application, if not set, the app will redirect to this URL if the user is not authenticated. If not set the app will display the content of the root page as defined in the codebase. This helps handle case where the landing page is https://agentkyra.ai and the application is on https://app.agentkyra.ai, the external landing page (https://agentkyra.ai) would then use the `/connect` (https://app.agentkyra.ai/connect) page to guide the user to authenticate
# For local development, you're likely to leave unset and use the embedded landing page to connect to the app.
NEXT_PUBLIC_LANDING_PAGE_URL=
# ------ Dev ------
# Optional: Set the dev mode ("true" or "false"). Default to "false".
NEXT_PUBLIC_DEV_MODE=false
# ------ Telemetry ------
# Optional: Set the domain for the Plausible analytics. If empty no analytics will be sent.
NEXT_PUBLIC_PLAUSIBLE_DOMAIN=
# Optional: Set the log level ("error", "warn", "info", "debug"). Default to "info".
NEXT_PUBLIC_LOG_LEVEL=info
# Optional: This variable is picked up by the Sentry Build Plugin.
SENTRY_ORG_ID=
# Optional: This variable is picked up by the Sentry Build Plugin.
SENTRY_PROJECT_ID=
# Optional: This variable is picked up by the Sentry Build Plugin.
# It's used for authentication when uploading source maps.
SENTRY_AUTH_TOKEN=
# Optional. 'true' of 'false' to enable Sentry. Default to 'false' if undefined.
NEXT_PUBLIC_SENTRY_ENABLED=
# Optional. Data Source Name required by sentry to report errors and performance issues. If undefined, Sentry will be disabled
NEXT_PUBLIC_SENTRY_DSN=
# Optional. Environment used in Sentry, highly recommended.
NEXT_PUBLIC_SENTRY_ENVIRONMENT=
# Optional. Number between 0 (0%) and 1.0 (100%), capture x% of the transactions for performance monitoring. Default to 0.1 (10%). Keep it low in Production, but can be set to 1.0 (100%) in development.
NEXT_PUBLIC_SENTRY_TRACE_SAMPLE_RATE=0.1
# Optional. Number between 0 (0%) and 1.0 (100%), capture x% of the sessions for replay. Default to 0.1 (10%). Keep it low in Production, but can be set to 1.0 (100%) in development.
NEXT_PUBLIC_SENTRY_REPLAY_SESSION_SAMPLE_RATE=0.1
# Optional. Number between 0 (0%) and 1.0 (100%), capture x% of the sessions in error for replay. Default to 1.0 (100%). Can keep it like this in Production, reduce it if too much noise or close to quota.
NEXT_PUBLIC_SENTRY_REPLAYS_ON_ERROR_SAMPLE_RATE=1
# ------ Verida ------
# Required: Set the Verida DID of this application, used for the authentication..
NEXT_PUBLIC_VERIDA_APP_DID=
# Required: Set the base URL of the Verida Vault.
NEXT_PUBLIC_VERIDA_VAULT_BASE_URL=
# ------ Verida Data API ------
# Required: Set the base URL of Verida's private data API.
NEXT_PUBLIC_VERIDA_DATA_API_BASE_URL=