-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy path.env.local.example
More file actions
41 lines (31 loc) · 1.6 KB
/
.env.local.example
File metadata and controls
41 lines (31 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
40
41
## IMPORTANT: To set-up your project:
## → 1. Duplicate this file and rename it to `.env.local`
## → 2. Define your preferred networks (also see https://github.com/scio-labs/use-inkathon/blob/main/src/chains.ts)
## → 3. Make sure to also define those environment variables on your deployment
## (i.e. see the *Deployment* section in the root `README.md`)
## NOTE: To use those variables in the code:
## → 1. Add them in `src/shared/environment.ts`
## → 2. And always import `env` from `@shared/environment` (not from `process`)
## Flag to differentiate production environments (i.e. for analytics)
NEXT_PUBLIC_PRODUCTION_MODE=false
## The current deployment url (i.e. useful for calling Next.js API routes)
NEXT_PUBLIC_URL=http://localhost:3000
## The default chain identifer
## IMPORTANT: Make sure to add the following for all contracts:
## → ABIs under `/packages/contracts/deployments/{contract}/metadata.json` (auto-generated on build)
## → Addresses for all chains under `/packages/contracts/deployments/{contract}/{chain}.ts` (auto-generated on deploy)
## NOTE: See dynamic contract imports under `src/deployments/deployments.ts`
## Multiple supported chain identifiers (Optional)
## IMPORTANT: It's mandatory to use double quotes in the array
# NEXT_PUBLIC_SUPPORTED_CHAINS=["alephzero-testnet"]
NEXT_PUBLIC_SUBSCAN_TOKEN=
NEXT_PUBLIC_LASTIC_ADDRESS='' # needed for multisig trading
# Vercel Postgres
POSTGRES_URL=""
POSTGRES_PRISMA_URL=""
POSTGRES_URL_NO_SSL=""
POSTGRES_URL_NON_POOLING=""
POSTGRES_USER=""
POSTGRES_HOST=""
POSTGRES_PASSWORD=""
POSTGRES_DATABASE=""