-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.env.example
36 lines (31 loc) · 953 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
27
28
29
30
31
32
33
34
35
36
# For app
NODE_ENV="development"
APP_URL="http://localhost:3000"
SESSION_SECRET="replace_this"
# For database
DATABASE_URL="postgresql://user:password@localhost:5432/dogokit-beagle"
DATABASE_BRANCH="local"
# For OAuth
GITHUB_CLIENT_ID="replace_this"
GITHUB_CLIENT_SECRET="replace_this"
GOOGLE_CLIENT_ID="replace_this"
GOOGLE_CLIENT_SECRET="replace_this"
# For services (Optional)
UPLOADCARE_PUBLIC_KEY="replace_this"
UPLOADCARE_SECRET_KEY="replace_this"
RESEND_KEY="replace_this"
POSTHOG_KEY="replace_this"
SENTRY_DSN="replace_this"
# For PostgreSQL container with Docker Compose (Optional)
POSTGRES_USER="user"
POSTGRES_PASSWORD="password"
POSTGRES_DATABASE="dogokit-beagle"
POSTGRES_HOST_PORT="5432"
POSTGRES_CONTAINER_PORT="5432"
# For MySQL container with Docker Compose (Optional)
MYSQL_ROOT_PASSWORD="replace_this"
MYSQL_USER="user"
MYSQL_PASSWORD="password"
MYSQL_DATABASE="dogokit-beagle"
MYSQL_HOST_PORT="3306"
MYSQL_CONTAINER_PORT="3306"