-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.example
42 lines (30 loc) · 1.52 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
# Since the ".env" file is gitignored, you can use the ".env.example" file 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.
# When adding additional environment variables, the schema in "/src/env.mjs"
# should be updated accordingly.
# Example:
# SERVERVAR="foo"
# NEXT_PUBLIC_CLIENTVAR="bar"
# Base URL of this instance, e.g., http://myinstance.example.net:8081
NEXT_PUBLIC_BASE_URL=http://myinstance.example.net:8081
# Required for a local instance, see https://github.com/edgedb/edgedb-js/pull/530
EDGEDB_CLIENT_TLS_SECURITY=insecure
# Kiwistand API and caching variables
KIWISTAND_API_HOST="https://news.kiwistand.com:8000"
KIWISTAND_MESSAGES_MAX_PAGE_SIZE=500
KIWINEWS_EDITORS_PROFILE_URL=https://opensheet.elk.sh/1kh9zHwzekLb7toabpdSfd87pINBpyVU6Q8jLliBXtEc/3wi
KIWINEWS_EDITORS_LINKS_URL=https://opensheet.elk.sh/1kh9zHwzekLb7toabpdSfd87pINBpyVU6Q8jLliBXtEc/editor_links
STORIES_CACHE_STALE_TTL=180000
STORIES_CACHE_EXPIRE_TTL=600000
# An HTTP RPC URL to be used on the server by viem
VIEM_HTTP_RPC=https://eth-mainnet.alchemyapi.io/v2/<api-key>
# Set your own!
NEXT_PUBLIC_RAINBOW_APP_NAME=<any string>
# Get one at alchemy.com
NEXT_PUBLIC_ALCHEMY_API_KEY=<alphanumeric key>
# Get one at cloud.walletconnect.com
NEXT_PUBLIC_WALLETCONNECT_PROJECT_ID=<hexidecimal key>