Initial commit: enterprise digital platform with portal SSO, DigiServer, IT Assets, NetworkView, Server Monitor

This commit is contained in:
ske087
2026-05-10 21:07:50 +03:00
commit 8d9df56b0b
364 changed files with 73655 additions and 0 deletions
@@ -0,0 +1,14 @@
"""Add https_config table for HTTPS configuration management."""
import sys
sys.path.insert(0, '/app')
from app.app import create_app
from app.extensions import db
from app.models.https_config import HTTPSConfig
app = create_app()
with app.app_context():
print("Creating https_config table...")
db.create_all()
print("✓ https_config table created successfully!")