-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy path.env.example
52 lines (41 loc) · 2.03 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
# This is an example .env file.
# DO NOT edit this file directly.
# Instead, copy its contents into a new file named .env
# and make your changes there.
# This will ensure that all environment variables remain private.
# Cloudflare Turnstile site key goes here. For dummy keys, see
# https://developers.cloudflare.com/turnstile/troubleshooting/testing/
NEXT_PUBLIC_TURNSTILE_SITE_KEY=""
# Cloudflare Turnstile secret key goes here. For dummy keys, see
# https://developers.cloudflare.com/turnstile/troubleshooting/testing/
TURNSTILE_SECRET_KEY=""
# Supabase API URL goes here. This can be obtained from the output of
# npm run supabase-dev:start or npm run supabase-test:start
NEXT_PUBLIC_SUPABASE_URL=""
# Supabase anon key goes here. This can be obtained from the output of
# npm run supabase-dev:start or npm run supabase-test:start
NEXT_PUBLIC_SUPABASE_ANON_KEY=""
# Supabase service role key goes here. This can be obtained from the output of
# npm run supabase-dev:start or npm run supabase-test:start
SUPABASE_SERVICE_ROLE_KEY=""
# This can be obtained by running npm run create-cryptokey and pasting in the
# value that is copied to the clipboard
VOTER_REGISTRATION_REPO_ENCRYPTION_KEY=""
# This can be an empty string and a fallback UI will be rendered
# (fine for local development)
GOOGLE_MAPS_API_KEY=""
# This can be obtained by running npm run create-cryptokey and pasting in the
# value that is copied to the clipboard
CRYPTO_KEY_COOKIES=""
# Can be either "development" or "production." Optional, defaults to development
# when loaded if undefined. Used to determine whether to set secure=true when
# creating cookies.
APP_ENV=""
# The URL of the serverless router that allows the Vercel KV package to make
# requests to a local Redis database. Can be obtained from the output of running
# npm run kv:start
KV_REST_API_URL=""
# The access token for the serverless router that allows the Vercel KV package
# to make requests to a local Redis database. Can be obtained from the output of
# running npm run kv:start
KV_REST_API_TOKEN=""