-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
27 lines (21 loc) · 779 Bytes
/
.env.example
File metadata and controls
27 lines (21 loc) · 779 Bytes
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
# ===========================================
# TaskFlow Pro - Environment Variables
# ===========================================
# Copy this file to backend/.env and frontend/.env.local
# and fill in your values
# -------------------------------------------
# Backend (.env)
# -------------------------------------------
# Database
DATABASE_URL="postgresql://taskflow_user:taskflow_pass@localhost:5436/taskflow_db"
# JWT Authentication
JWT_SECRET="your-super-secret-jwt-key-min-32-characters-change-in-production"
JWT_EXPIRES_IN="7d"
# Server
PORT=3001
NODE_ENV="development"
FRONTEND_URL="http://localhost:3002"
# -------------------------------------------
# Frontend (.env.local)
# -------------------------------------------
NEXT_PUBLIC_API_URL=http://localhost:3001