-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
32 lines (25 loc) · 984 Bytes
/
Copy path.env.example
File metadata and controls
32 lines (25 loc) · 984 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
# TeamBeat Environment Configuration
# Copy this file to .env and adjust the values as needed
# Database Configuration
# Path to SQLite database file (for Docker: use /db/teambeat.db)
DATABASE_URL=./teambeat.db
# Server Configuration
# Port the application will listen on
PORT=3000
# Application Environment
# Set to 'production' for Docker deployment
NODE_ENV=development
# Docker-specific settings (when using Docker)
# DATABASE_URL=/db/teambeat.db
# PORT=3000
# NODE_ENV=production
# Optional: Session configuration
# SESSION_SECRET=your-random-secret-key-here
# Optional: Logging level
# LOG_LEVEL=info
# Optional: Sentry Error Tracking
# Only required if you want to enable Sentry error tracking
# Get your DSN from https://sentry.io/
# Both variables should have the SAME value - the PUBLIC_ prefix just makes it available to the browser
# SENTRY_DSN=https://your-sentry-dsn-here@sentry.io/project-id
# PUBLIC_SENTRY_DSN=https://your-sentry-dsn-here@sentry.io/project-id