All checks were successful
Build and Deploy Log Center / build-and-deploy (push) Successful in 1m30s
5 lines
149 B
Bash
Executable File
5 lines
149 B
Bash
Executable File
#!/bin/bash
|
|
export PYTHONPATH=$PYTHONPATH:$(pwd)
|
|
echo "Starting Log Center on port 8002..."
|
|
uvicorn app.main:app --host 0.0.0.0 --port 8002 --reload
|