forked from paritytech/t3rminal
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
34 lines (28 loc) · 1.56 KB
/
Copy path.env.example
File metadata and controls
34 lines (28 loc) · 1.56 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
# Copy this file to .env.local and fill in the values. .env.local is gitignored.
# Never commit real keys.
# Target network key (see lib/host/networks resolution). Defaults to a testnet.
NEXT_PUBLIC_NETWORK=paseo-next-v2
# Deployed T3rminalBulletinIndex contract address (printed by `npm run deploy`).
NEXT_PUBLIC_BULLETIN_INDEX_ADDRESS=0x0000000000000000000000000000000000000000
# Asset Hub RPC websocket for the chosen network.
NEXT_PUBLIC_ASSET_HUB_WS=wss://paseo-asset-hub-next-rpc.polkadot.io
# Contract signer private key. Required only for flows that sign from the
# browser. Use a throwaway testnet key — NEVER a key holding real funds, and
# NEVER commit it.
NEXT_PUBLIC_CONTRACT_SIGNER_KEY=0x0000000000000000000000000000000000000000000000000000000000000000
# Sentry (client-side). Empty DSN disables Sentry entirely — safe default for
# local dev. Set both in production / preview environments.
NEXT_PUBLIC_SENTRY_DSN=
# Sampling rate for Sentry traces. Production deploy workflow sets this to 1.0
# (100% sampling). Defaults to 0.0 here (off — only explicit spans are sampled).
NEXT_PUBLIC_SENTRY_TRACES_SAMPLE_RATE=0.0
# Environment label shown in Sentry (production / preview / local). Defaults to
# "local" when unset.
NEXT_PUBLIC_SENTRY_ENVIRONMENT=
# Release identifier. Defaults to NEXT_PUBLIC_COMMIT_SHA (set by CI), else unset.
# NEXT_PUBLIC_SENTRY_RELEASE=
# Sentry build-plugin source map upload. Only needed if you want source maps
# uploaded during `next build`. Leave unset for `dot deploy` / static export.
# SENTRY_ORG=
# SENTRY_PROJECT=
# SENTRY_AUTH_TOKEN=