-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
36 lines (25 loc) · 1.68 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
# Since .env is gitignored, you can use .env.example to build a new `.env` file when you clone the repo.
# Keep this file up-to-date when you add new variables to \`.env\`.
# This file will be committed to version control, so make sure not to have any secrets in it.
# If you are cloning this repo, create a copy of this file named `.env` and populate it with your secrets.
# Determines general behavior depending on the chain environment (mainnet, testnet, etc.)
NEXT_PUBLIC_TORUS_CHAIN_ENV="testnet"
# The WebSocket URL used to interact with Torus network nodes.
NEXT_PUBLIC_TORUS_RPC_URL="wss://api.testnet.torus.network"
# The cache provider URL used to get some data from the cache.
NEXT_PUBLIC_TORUS_CACHE_URL="https://dev.cache.torus.network/"
# The database URL is used to connect to your SQL database.
POSTGRES_URL="postgresql://postgres:password@localhost:1337/torus-ts-db"
# The JWT secret used to sign JWT tokens related to our apps signed endpoints.
JWT_SECRET="your-jwt-secret"
# The mnemonic for the key used to sign transactions related to the Allocator.
TORUS_ALLOCATOR_MNEMONIC="apple orange banana cedar drift apple orange banana cedar drift apple orange"
# The mnemonic for the key used to sign transactions related to the Curator.
TORUS_CURATOR_MNEMONIC="your-mnemonic"
# The Discord webhook URL used to send notifications to Discord.
CURATOR_DISCORD_WEBHOOK_URL="https://discord.com/api/webhooks/your-webhook-url"
# The Discord API token and endpoint used to send notifications to Discord.
DISCORD_API_TOKEN="your-discord-api-token"
DISCORD_API_ENDPOINT="your-discord-api-endpoint"
# The Pinata API key and secret are used to upload files to Pinata (IPFS).
PINATA_JWT="your-pinata-jwt"