-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
31 lines (23 loc) · 872 Bytes
/
.env.example
File metadata and controls
31 lines (23 loc) · 872 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
# Environment configuration for SkillRx Beacon
#
# Copy this file to .env and fill in the values:
# cp .env.example .env
#
# IMPORTANT: Never commit .env to version control!
# Rails master key (required for production)
# Generate with: bin/rails secret
RAILS_MASTER_KEY=
# Rails environment (development, test, production)
RAILS_ENV=production
# Server port (default: 3000 for development, 80 for Docker with Thruster)
PORT=3000
# Content directory path (where medical content files are stored)
CONTENT_PATH=/path/to/content
# Optional: Database path (defaults to storage/production.sqlite3)
# DATABASE_PATH=/var/lib/skillrx/production.sqlite3
# Optional: Log level (debug, info, warn, error, fatal)
# RAILS_LOG_LEVEL=info
# Optional: Enable Solid Queue in Puma process
SOLID_QUEUE_IN_PUMA=1
# Optional: Number of Puma threads (default: 3)
# RAILS_MAX_THREADS=3