-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy path.env.example
More file actions
58 lines (50 loc) · 1.76 KB
/
.env.example
File metadata and controls
58 lines (50 loc) · 1.76 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
58
# Site URL (without trailing slash)
SITE_URL=http://localhost:3000
# Postgres
POSTGRES_DB=wapydev
POSTGRES_USER=wapydev
# Can be automatically generated if not given with ./scripts/setup.sh
POSTGRES_PASSWORD=
DATABASE_URL="postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@db:5432/${POSTGRES_DB}?schema=public"
# Email configuration
# Email server configuration settings
EMAIL_SERVER_USER=
EMAIL_SERVER_PASSWORD=
EMAIL_SERVER_HOST=
EMAIL_SERVER_PORT=587
# From email address
EMAIL_FROM=
# Contact email address that contact form submissions will be sent to
EMAIL_CONTACT_EMAIL=
# Better Auth configuration
# Can be automatically generated if not given with ./scripts/setup.sh
AUTH_SECRET=
# Disable new user registration
# Be aware that this will disable the ability to create new users, so enable it and set to true only after you are registered.
# DISABLE_USER_REGISTRATION=false
# Github - Optional
GITHUB_ID=
GITHUB_SECRET=
# Google - Optional
GOOGLE_ID=
GOOGLE_SECRET=
# Generic OAuth - Optional
# If you want to use Generic OAuth for authentication, uncomment the following lines and set the values
# Provider is the name of the OAuth provider (ex: keycloak, authentik)
# GENERIC_AUTH_PROVIDER=
# Generic OAuth Client ID
# GENERIC_AUTH_CLIENT_ID=
# Generic OAuth Client Secret
# GENERIC_AUTH_CLIENT_SECRET=
# Generic OAuth Issuer or Discovery URL
# GENERIC_AUTH_ISSUER=
# Generic OAuth Scope (optional, with space separated values)
# GENERIC_AUTH_SCOPE=
# Push Notifications
# Can be automatically generated if not given with ./scripts/setup.sh
NEXT_PUBLIC_VAPID_PUBLIC_KEY=
# Can be automatically generated if not given with ./scripts/setup.sh
VAPID_PRIVATE_KEY=
# Subscription JWT Secret
# Can be automatically generated if not given with ./scripts/setup.sh
SUBSCRIPTION_JWT_SECRET=