-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
36 lines (27 loc) · 1.02 KB
/
.env.example
File metadata and controls
36 lines (27 loc) · 1.02 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
# ============================================================
# AI-Powered Security Monitoring & Threat Detection Platform
# Root .env.example - copy to .env and fill in your values
# ============================================================
# --------------------------
# Backend (FastAPI)
# --------------------------
# SQLite (default for local dev - no changes needed)
DATABASE_URL=sqlite:///./security_logs.db
# PostgreSQL (for production - uncomment and set values)
# DATABASE_URL=postgresql://user:password@localhost:5432/security_db
# --------------------------
# Frontend (Next.js)
# --------------------------
# URL of the FastAPI backend that the Next.js dashboard connects to
# For local dev:
NEXT_PUBLIC_API_URL=http://localhost:8000
# For Docker Compose:
# NEXT_PUBLIC_API_URL=http://backend:8000
# For production:
# NEXT_PUBLIC_API_URL=https://your-api-domain.com
# --------------------------
# Docker Compose (optional)
# --------------------------
# Override ports if needed
# BACKEND_PORT=8000
# FRONTEND_PORT=3000