Some checks are pending
CI / ruff (push) Waiting to run
CI / mypy (push) Waiting to run
CI / pytest (push) Waiting to run
CI / package (push) Waiting to run
CI / Install smoke (${{ matrix.label }}) (linux, ubuntu-latest) (push) Blocked by required conditions
CI / Install smoke (${{ matrix.label }}) (macos-arm64, macos-14) (push) Blocked by required conditions
7 lines
267 B
Bash
Executable File
7 lines
267 B
Bash
Executable File
#!/bin/bash
|
|
echo "💻 Avvio dell'interfaccia Demo UI (Porta 7960)..."
|
|
echo "💡 Premi Ctrl+C in questo terminale per fermarla."
|
|
echo "----------------------------------------------------"
|
|
|
|
PYTHONPATH=demo uvicorn demo.server:app --host 0.0.0.0 --port 7960 --reload
|