-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
16 lines (13 loc) · 1.01 KB
/
.env.example
File metadata and controls
16 lines (13 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# ──────────────────────────────────────────────────────────────────────────────
# CyberScan X — Environment Variables
# Copy this file to .env and fill in your values.
# The frontend (client/) works without any of these — they are only required
# to run the backend server (npm run server) for scan-history persistence.
# ──────────────────────────────────────────────────────────────────────────────
# PostgreSQL connection string (Neon.tech, Supabase, or local Postgres).
# Leave empty or use a dummy value if you only want to run the frontend.
DATABASE_URL="postgresql://user:password@localhost:5432/cyberscanx?schema=public"
# Backend server port (default: 5000)
PORT=5000
# Node environment
NODE_ENV=development