38723-vm/core/context_processors.py
Flatlogic Bot 415a23fcaf ONE
2026-02-23 18:57:12 +00:00

13 lines
400 B
Python

import os
import time
def deployment_info(request):
"""
Adds project-specific environment variables to the template context globally.
"""
return {
"project_description": os.getenv("PROJECT_DESCRIPTION", ""),
"project_image_url": os.getenv("PROJECT_IMAGE_URL", ""),
# Used for cache-busting static assets
"deployment_timestamp": int(time.time()),
}