05/22 Implement license version

This commit is contained in:
2026-05-22 16:31:19 -04:00
parent e6657e60cf
commit 687216e332
16 changed files with 1373 additions and 37 deletions
+5
View File
@@ -74,6 +74,11 @@ class Config:
ADMIN_EMAIL = os.environ.get('ADMIN_EMAIL', 'admin@yourdomain.com')
ADMIN_PASSWORD = os.environ.get('ADMIN_PASSWORD', 'Admin@123!')
# License
# Set LICENSE_KEY in .env to the TDESK-... key issued by the license server.
# If absent the app runs in Community (free) mode with reduced features.
LICENSE_KEY = os.environ.get('LICENSE_KEY', '')
class DevelopmentConfig(Config):
DEBUG = True