forked from Akshayk1129/Neurobridge
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
27 lines (20 loc) · 843 Bytes
/
.env.example
File metadata and controls
27 lines (20 loc) · 843 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
# NeuroBridge AI — Environment Configuration
# Copy this file to .env and fill in values
# ============================================
# Backend (server/index.js)
# ============================================
# Server port (default: 3001)
PORT=3001
# JWT secret for authentication (CHANGE THIS IN PRODUCTION)
JWT_SECRET=neurobridge-change-me-in-production
# Node environment
NODE_ENV=development
# Push Notification VAPID keys (generate with: npx web-push generate-vapid-keys)
VAPID_PUBLIC_KEY=your-vapid-public-key
VAPID_PRIVATE_KEY=your-vapid-private-key
VAPID_SUBJECT=mailto:your-email@example.com
# ============================================
# Frontend (Vite — prefix with VITE_)
# ============================================
# Backend API URL (set to deployed backend URL in production)
VITE_API_URL=http://localhost:3001