-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.env.example
More file actions
37 lines (29 loc) · 909 Bytes
/
.env.example
File metadata and controls
37 lines (29 loc) · 909 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
30
31
32
33
34
35
36
37
# Environment Configuration Template for Infinite Pixel Canvas
# Copy this file to .env and fill in the actual values
# MongoDB Configuration
MONGODB_URI=mongodb://localhost:27017/pixcanvas
MONGODB_DATABASE=pixcanvas
# Backend Service Configuration
BACKEND_PORT=3001
NODE_ENV=development
# Signaling Service Configuration
SIGNALING_PORT=3002
SIGNALING_HOST=localhost
# Frontend Configuration
FRONTEND_PORT=3000
VITE_API_BASE_URL=http://localhost:3001
VITE_WS_URL=ws://localhost:3001/ws
VITE_SIGNALING_URL=http://localhost:3002
# Frontend Build-time Environment Variables (for production builds)
VITE_SENTRY_DSN=
VITE_APP_VERSION=1.0.0
# External Port Configuration (for Docker)
MONGO_PORT=27017
HTTP_PORT=80
HTTPS_PORT=443
# Sentry Configuration (Optional - can be empty for development)
SENTRY_DSN_BACKEND=
SENTRY_DSN_FRONTEND=
SENTRY_ENVIRONMENT=development
# Development Configuration
DEBUG=true