-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
26 lines (22 loc) · 995 Bytes
/
.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
# this is a example of the production .env file
## docker compose related starts here
# need to be set on production server before running docker compose on production
DEST=remote:/home/username/ # used for rsync to server
DOMAIN=anymem.app # used for traefik labels
## docker compose related ends here
## next.js related starts here
# need to be copied to web/.env before building docker image for production
NEXT_PUBLIC_BASE_URL=https://anymem.app # used for next.js to generate sitemap
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY=CHANGE_ME # used for clerk
CLERK_SECRET_KEY=CHANGE_ME # used for clerk
CLERK_WEBHOOK_SECRET=CHANGE_ME # used for clerk webhook
ADMIN_CLERK_USER_ID=CHANGE_ME # AnyMem.users.where(id=1).clerk_user_id
## next.js related ends here
## supabase related starts here
# production
# NEXT_PUBLIC_SUPABASE_URL=CHANGE_ME
# SUPABASE_SERVICE_ROLE_KEY=CHANGE_ME
# local development
NEXT_PUBLIC_SUPABASE_URL=CHANGE_ME
SUPABASE_SERVICE_ROLE_KEY=CHANGE_ME
## supabase related ends here