-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
51 lines (38 loc) · 2.14 KB
/
.env.example
File metadata and controls
51 lines (38 loc) · 2.14 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Environment Configuration for Pulsefeed
# Copy this file to .env and fill in your values
# =============================================================================
# REQUIRED
# =============================================================================
# Secret key for Flask session encryption (generate with: python -c "import secrets; print(secrets.token_hex(32))")
SECRET_KEY=your-secret-key-here
# Database encryption key for sensitive fields like OAuth tokens
# Generate with: python -c "from cryptography.fernet import Fernet; print(Fernet.generate_key().decode())"
DB_ENCRYPTION_KEY=your-encryption-key-here
# =============================================================================
# SERVER CONFIGURATION
# =============================================================================
# Server port (default: 1994)
PORT=1994
# =============================================================================
# DATABASE CONFIGURATION (REQUIRED)
# =============================================================================
# PostgreSQL database URL (SQLite removed - Roadmap #11)
# For Docker: postgresql://bosapp:devpassword@db:5432/bosapp
# For local dev: postgresql://bosapp:devpassword@localhost:5432/bosapp
DATABASE_URL=postgresql://bosapp:devpassword@localhost:5432/bosapp
# Alternative variable name (either works)
# SQLALCHEMY_DATABASE_URI=postgresql://bosapp:devpassword@localhost:5432/bosapp
# =============================================================================
# OPTIONAL SERVICES
# =============================================================================
# Redis URL (for caching and Celery background tasks)
# REDIS_URL=redis://localhost:6379/0
# Sentry DSN for error tracking (production)
# SENTRY_DSN=https://your-sentry-dsn
# =============================================================================
# OAUTH (for Google/Microsoft calendar sync)
# =============================================================================
# GOOGLE_CLIENT_ID=your-google-client-id
# GOOGLE_CLIENT_SECRET=your-google-client-secret
# MICROSOFT_CLIENT_ID=your-microsoft-client-id
# MICROSOFT_CLIENT_SECRET=your-microsoft-client-secret