-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
29 lines (23 loc) · 929 Bytes
/
.env.example
File metadata and controls
29 lines (23 loc) · 929 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
28
29
# Database Configuration
DATABASE_URL=postgresql://postgres:postgres@localhost:5432/aseanflow_dev
# Redis Configuration
REDIS_URL=redis://localhost:6379
# JWT Configuration (Optional - Remove if not using authentication)
# JWT_ACCESS_SECRET=2q85yKGozsdCpH4fyBR9bZtkvsOBUO0U7rYKLfEL1zK5Fvlfq1kRyTg1CYrRs6Q6
# JWT_REFRESH_SECRET=DND2/sd9BJ6Tcsf/9jGFHouxeaTT0nes6IgDuHwr+2s9H2Fe8fRtM3sg8v4CzQmh
# JWT_ACCESS_EXPIRY=15m
# JWT_REFRESH_EXPIRY=7d
# NextAuth Configuration (Optional - Remove if not using NextAuth)
# NEXTAUTH_SECRET=S2Lgmol6fSKEz6g4wJ7Ngbw2VFvU/mZCJbOKpyVeV3eyqij7VdbC1UGuNSb3J5f8
# NEXTAUTH_URL=http://localhost:3000
# Application Configuration
NODE_ENV=development
PORT=3001
FRONTEND_URL=http://localhost:3000
# PostgreSQL Configuration (for docker-compose)
POSTGRES_USER=postgres
POSTGRES_PASSWORD=postgres
POSTGRES_DB=aseanflow_dev
POSTGRES_PORT=5432
# Redis Configuration (for docker-compose)
REDIS_PORT=6379