forked from DeepNotesApp/DeepNotes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.env
More file actions
40 lines (29 loc) · 1.4 KB
/
Copy pathtemplate.env
File metadata and controls
40 lines (29 loc) · 1.4 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
DEV=true
SEND_EMAILS=false
# Domain used for cookie settings — replace with your actual domain (e.g. notes.example.com)
HOST=deepnotes.local
APP_SERVER_PORT=48922
APP_SERVER_URL=/trpc
CLIENT_PORT=60379
CLIENT_URL=http://localhost:60379
CLIENT_APP_URL=https://deepnotes.app
REALTIME_SERVER_PORT=48924
REALTIME_SERVER_URL=/realtime
COLLAB_SERVER_PORT=48923
COLLAB_SERVER_URL=/collab
ACCESS_TOKEN_SECRET="access_token_secret_here"
REFRESH_TOKEN_SECRET="refresh_token_secret_here"
USER_EMAIL_SECRET="email_secret_here"
USER_EMAIL_ENCRYPTION_KEY="AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=" # 32-byte base64 encryption key
USER_REHASHED_LOGIN_HASH_ENCRYPTION_KEY="AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=" # 32-byte base64 encryption key
USER_AUTHENTICATOR_SECRET_ENCRYPTION_KEY="AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=" # 32-byte base64 encryption key
USER_RECOVERY_CODES_ENCRYPTION_KEY="AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=" # 32-byte base64 encryption key
GROUP_REHASHED_PASSWORD_HASH_ENCRYPTION_KEY="AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=" # 32-byte base64 encryption key
KEYDB_HOSTS=localhost:6379 # comma separated list of host:port of KeyDB cluster nodes
KEYDB_PASSWORD="keydb_password_here"
POSTGRES_HOST=localhost
POSTGRES_PORT=5432
POSTGRES_USER="postgres"
POSTGRES_PASSWORD="postgres_password_here"
POSTGRES_DATABASE=deepnotes
POSTGRES_CA_CERTIFICATE=""