Reorganize infrastructure as code and implement versioning schema

This commit is contained in:
Alphaeus Mote
2025-05-21 19:40:57 -04:00
parent 8d1a6dd188
commit 2db108aa6b
34 changed files with 4870 additions and 870 deletions
+21
View File
@@ -0,0 +1,21 @@
# Environment Variables for Docker Deployment
# Copy from .env.example and customize as needed
# Database Configuration
POSTGRES_USER=admanagement
POSTGRES_PASSWORD=change_this_to_a_secure_password
POSTGRES_DB=admanagement
# Application Configuration
NODE_ENV=production
PORT=5000
BASE_URL=http://localhost:5000
SESSION_SECRET=change_this_to_a_random_string
JWT_SECRET=change_this_to_a_different_random_string
# Default Admin User Configuration
DEFAULT_ADMIN_USERNAME=admin
DEFAULT_ADMIN_PASSWORD=change_this_to_a_secure_password
DEFAULT_ADMIN_EMAIL=admin@example.com
DEFAULT_ADMIN_FULLNAME=System Administrator
DISABLE_REGISTRATION=false