<# Description: PowerShell utility script for launching the intranet/server workflow. Inside functions: N/A - procedural PowerShell startup commands. Developer : Qin Yue @ 2026 Organization : OptiHK Limited #> $ErrorActionPreference = "Stop" if (-not $env:MXPIC_SECRET_KEY) { $env:MXPIC_SECRET_KEY = "replace-this-with-a-long-random-office-secret" } $env:MXPIC_HOST = "0.0.0.0" $env:MXPIC_PORT = "3000" $env:MXPIC_DEBUG = "0" python backend\server.py