-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
38 lines (31 loc) · 1.07 KB
/
.env.example
File metadata and controls
38 lines (31 loc) · 1.07 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
# Server Ports
SERVER_PORT=8080
UI_PORT=3000
EXAMPLE_CLIENT_PORT=5202
# Next.js Configuration
NEXT_PUBLIC_BASE_PATH=/cron-observer
NEXT_PUBLIC_API_BASE_URL=https://dse.biniyog.com.bd/cron-observer/api/v1
# Database Configuration
DATABASE_URI=mongodb://localhost:27017
DATABASE_NAME=cronobserver
DATABASE_TIMEOUT=10s
DATABASE_MAX_CONNS=100
# Authentication
JWT_SECRET=your-jwt-secret-key-here
SUPER_ADMINS=admin@example.com,superadmin@example.com
# Gmail Configuration (for alerts)
GMAIL_USER=your-email@gmail.com
GMAIL_APP_PASSWORD=your-app-password
# Message Broker Configuration (RabbitMQ for delete queue)
AMQP_URL=amqp://guest:guest@localhost:5672/
DELETE_QUEUE_NAME=task_delete_queue
DELETE_RECONCILER_INTERVAL=5m
DELETE_RECONCILER_THRESHOLD=10m
# Example Client Configuration
CRON_OBSERVER_URL=http://localhost:8080
CRON_OBSERVER_API_KEY=your-project-api-key-here
# NextAuth Configuration (for UI)
NEXTAUTH_SECRET=your-nextauth-secret-here
NEXTAUTH_URL=https://dse.biniyog.com.bd/cron-observer
GOOGLE_CLIENT_ID=your-google-client-id
GOOGLE_CLIENT_SECRET=your-google-client-secret