-
-
Notifications
You must be signed in to change notification settings - Fork 103
Expand file tree
/
Copy path.env.sample
More file actions
57 lines (43 loc) · 2.04 KB
/
.env.sample
File metadata and controls
57 lines (43 loc) · 2.04 KB
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
56
57
########################################
## PRE-FILLED DEV SETTINGS ##
########################################
# This is the environment type, and determines some config and feature sets
DL_ENV_TYPE='dev' # 'selfHosted', 'dev', 'demo'
# You can connect to our public dev instance during development
SUPABASE_URL='https://admdzkssuivrztrvzinh.supabase.co'
SUPABASE_ANON_KEY='eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6ImFkbWR6a3NzdWl2cnp0cnZ6aW5oIiwicm9sZSI6ImFub24iLCJpYXQiOjE3NDE0NjQ0NjIsImV4cCI6MjA1NzA0MDQ2Mn0.8uVAFecCIVVKlB5JW4RqDGIUKym4f6zK4bL26vjkvKY'
# The credentials for a Pro plan user on the demo server, to get auto-filled
DL_DEMO_USER='dev@domain-locker.com'
DL_DEMO_PASS='password123'
################################################
## FOR USING POSTGRES DB INSTEAD OF SUPABASE ##
###############################################
# DL_PG_HOST='localhost'
# DL_PG_PORT='5432'
# DL_PG_USER='postgres'
# DL_PG_PASSWORD='changeme2420'
# DL_PG_NAME='domain_locker'
# NOTE: Remember to remove the Supabase creds & pre-filled dev settings above
########################################
## ADDITIONAL ENVIRONMENTAL VARIABLES ##
########################################
# (optional) For a sitemap, you'll need the base URL
# DL_BASE_URL='http://localhost:3000'
# (optional) To enable Captcha, add your Turnstile key
# DL_TURNSTILE_KEY=''
# (optional) To enable error tracking, add your GlitchTip or Sentry DSN
# DL_GLITCHTIP_DSN=''
# (optional) To enable hit counting, add your Plausible URL and site ID
# DL_PLAUSIBLE_URL=''
# DL_PLAUSIBLE_SITE=''
# (optional) To host your backend API somewhere else, configure the endpoints below
# DL_DOMAIN_INFO_API=''
# DL_DOMAIN_SUBS_API=''
# (optional) To disable write-methods being called from the UI (e.g. if no auth)
# DL_DISABLE_WRITE_METHODS='false'
#
# (optional, self-hosted) Number of concurrent domain checks (default: 10)
# DL_MONITOR_CONCURRENCY='10'
#
# (optional, self-hosted) Set to `true` to disable SSRF protection for internal domains
# DL_DISABLE_SSRF_PROTECTION='true'