-
Notifications
You must be signed in to change notification settings - Fork 38
/
.env.dev.sample
34 lines (26 loc) · 1.1 KB
/
.env.dev.sample
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
## Indexer DB
DATABASE_URL="postgres://replicator:password@localhost:6541/replicator?schema=public"
## Farcaster Hub (optional: only required for writing)
# The format is <host>:<port>, do not include the protocol
FC_HUB_URL="hub-grpc.pinata.cloud"
# If using the hub monorepo this should be set to false unless you setup TLS
FC_HUB_USE_TLS="true"
## App signer (required for registering new app signer keys)
# Use your personal mnemonic for running locally
APP_FID=
APP_MNENOMIC=
# RPC URLs (optional: public RPCs are used by default, but get rate limited)
# These are used for fetching data from the blockchain
# Format: CHAIN_RPC_URL_<CHAIN_ID>=<URL>
CHAIN_RPC_URL_1=
# Client name (only used for frontend aesthetics)
NEXT_PUBLIC_FC_CLIENT_NAME="Opencast"
## Imgur for image uploads (see https://apidocs.imgur.com)
NEXT_PUBLIC_IMGUR_CLIENT_ID=
IMGUR_CLIENT_SECRET=
# WalletConnectV2 Id (you can get your own @ https://walletconnect.com/)
NEXT_PUBLIC_WALLETCONNECT_ID=
# Application URL (used for redirects)
NEXT_PUBLIC_URL=http://localhost:3000
# Indexer API for indexing progress
INDEXER_API_URL=http://localhost:3005