-
Notifications
You must be signed in to change notification settings - Fork 223
/
.env.example
55 lines (36 loc) · 1.3 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
#############################################################
#### Followings need to be copied to .env.production
#### And inline by Next.js during docker build
#############################################################
NEXT_PUBLIC_APP_NAME=xLog
NEXT_PUBLIC_OUR_DOMAIN=localhost:2222
NEXT_PUBLIC_SCORE_API_DOMAIN=localhost:2222
NEXT_PUBLIC_DISCORD_LINK="https://discord.gg/46VJMMVCuF"
NEXT_PUBLIC_TWITTER_LINK="https://x.com/_xLog"
NEXT_PUBLIC_GITHUB_LINK="https://github.com/Crossbell-Box/xlog"
NEXT_PUBLIC_CSB_IO="https://crossbell.io"
NEXT_PUBLIC_CSB_SCAN="https://scan.crossbell.io"
NEXT_PUBLIC_IPFS_GATEWAY="https://ipfs.4everland.xyz/ipfs/"
NEXT_PUBLIC_MIRA_LINK="https://mira.crossbell.io"
NEXT_PUBLIC_WALLET_CONNECT_V2_PROJECT_ID=
# NFT
SIMPLEHASH_API_KEY=
# OPENAI
OPENAI_API_KEY=
# POSTGRES
POSTGRES_USER=postgres
POSTGRES_PASSWORD=password
POSTGRES_DB=indexer
# Nest run locally
DB_HOST=localhost
# DB_HOST=postgres
DB_PORT=5432
DB_SCHEMA=public
# Prisma database connection
DATABASE_URL=postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@${DB_HOST}:${DB_PORT}/${POSTGRES_DB}?schema=${DB_SCHEMA}&sslmode=prefer&connection_limit=400&pool_timeout=30
# Redis database connection
REDIS_URL=redis://localhost:6379
# Anonymous account
ANONYMOUS_ACCOUNT_PRIVATEKEY=
# Portfolio Stats
PORTFOLIO_GITHUB_TOKEN=