-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.env
42 lines (30 loc) · 951 Bytes
/
example.env
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
# Enable or disable debug mode
DEBUG=false
# Server port
PORT=9000
# Test mode (if applicable)
TEST_MODE=
# Image upload size limit
IMAGE_UPLOAD_SIZE_LIMIT=5242880 # 5MB in bytes
# Frontend application URL
FRONTEND_APP_LOGIN_REDIRECT=http://localhost:9001/login/success
GOOGLE_APP_OAUTH_REDIRECT=http://localhost:9000/api/v1/oauth/google/callback
# OpenAI API key
OPENAI_API_KEY=super_secret
# Cloudinary configuration
CLOUD_NAME=super_secret
CLOUDINARY_API_KEY=super_secret
CLOUDINARY_API_SECRET=super_secret
CLOUDINARY_API_ENV=super_secret
# Secret for various purposes in the application
SECRET=another_private_secret_seriously
# Google OAuth credentials
GOOGLE_CLIENT_ID=super_secret
GOOGLE_CLIENT_SECRET=super_secret
GOOGLE_CALLBACK_URL=http://localhost:3000/oauth2/redirect/google
# PostgreSQL database URL
DATABASE_URL=your_postgres_database_url
# Session secret
JWT_SECRET=ChiziKarogwaTena
# Node environment
NODE_ENV=development