-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
77 lines (59 loc) · 2.02 KB
/
Copy path.env.example
File metadata and controls
77 lines (59 loc) · 2.02 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# FocusFlow Environment Configuration
# Copy this file to .env and customize for your local environment
# NEVER commit the .env file to Git!
# ===========================
# Security & Authentication
# ===========================
# Certificate password for HTTPS (use strong password in production)
CERT_PASSWORD=MyPfxPassword123!
# JWT Configuration
# IMPORTANT: Use a strong, random key (minimum 32 characters for HS256)
JWT_KEY=YourSuperSecretKeyThatIsAtLeast32CharactersLongForHS256Algorithm
JWT_ISSUER=FocusFlowApi
JWT_AUDIENCE=FocusFlowClient
# ===========================
# Database Configuration
# ===========================
# PostgreSQL Configuration
POSTGRES_DB=FocusFlowDb_Dev
POSTGRES_USER=postgres
POSTGRES_PASSWORD=postgres
# Database Connection String (used by API)
# This is constructed automatically in docker-compose but can be overridden
CONNECTION_STRING=Host=postgres-db;Port=5432;Database=${POSTGRES_DB};Username=${POSTGRES_USER};Password=${POSTGRES_PASSWORD}
# ===========================
# Application URLs
# ===========================
# API Base URL (used by Blazor app)
API_BASE_URL=http://focusflow-api:8080
# External URLs (for accessing from host machine)
BLAZOR_URL=http://localhost:5050
API_EXTERNAL_URL=http://localhost:8080
# ===========================
# Development Settings
# ===========================
# ASP.NET Core Environment
ASPNETCORE_ENVIRONMENT=Development
# Logging Level
LOG_LEVEL=Information
# ===========================
# Optional: Third-party Services
# ===========================
# Email Configuration (if needed)
# SMTP_HOST=smtp.gmail.com
# SMTP_PORT=587
# SMTP_USER=your-email@gmail.com
# SMTP_PASSWORD=your-app-password
# Azure/Cloud Configuration (if needed)
# AZURE_STORAGE_CONNECTION_STRING=
# AZURE_KEY_VAULT_URL=
# ===========================
# E2E Testing Configuration
# ===========================
# Test user credentials (for E2E tests)
TEST_USER_EMAIL=test@example.com
TEST_USER_PASSWORD=Password123!
# Browser settings for E2E tests
E2E_HEADLESS=true
E2E_SLOWMO=50
E2E_TIMEOUT=10000