1+ # Database Configuration
2+ # User for connecting to the PostgreSQL database.
13SPARKY_FITNESS_DB_USER = sparky
2- SPARKY_FITNESS_DB_HOST = localhost
4+ # Name of the database to connect to.
35SPARKY_FITNESS_DB_NAME = sparkyfitness_db
6+ # Password for the database user.
47SPARKY_FITNESS_DB_PASSWORD = password
8+ # Port number for the PostgreSQL database server.
59SPARKY_FITNESS_DB_PORT = 5432
610
7-
811# Logging level for the server. Options: DEBUG, INFO, WARN, ERROR, SILENT
912SPARKY_FITNESS_LOG_LEVEL = INFO
1013
11- # AI API Encryption Key (must be 32 bytes long for AES-256)
12- SPARKY_FITNESS_AI_API_ENCRYPTION_KEY = YOUR_32_BYTE_ENCRYPTION_KEY_HERE
14+ # API Encryption Key (must be 32 bytes long for AES-256)
15+ # Used to encrypt sensitive data like API keys for external services.
16+ # You can generate a strong 32-byte key using:
17+ # node -e "console.log(require('crypto').randomBytes(32).toString('hex'))"
18+ SPARKY_FITNESS_API_ENCRYPTION_KEY = 7bee6b7620e1d8b4be251c2e50728409299a412c55f46d853eba100b35163428
19+
20+ # JWT Secret for authentication tokens.
21+ # This should be a strong, unique key for securing your application's JWTs.
22+ JWT_SECRET = 7bee6b7620e1d8b4be251c2e50728409299a412c55f46d853eba100b35163428
23+
24+ # Port on which the SparkyFitness server will listen.
25+ SPARKY_FITNESS_SERVER_PORT = 3010
0 commit comments