12 lines
248 B
PowerShell
12 lines
248 B
PowerShell
$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
|