mirror of
https://github.com/opsre/LiteOps.git
synced 2026-02-06 15:11:10 +08:00
10 lines
193 B
Bash
Executable File
10 lines
193 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "Starting nginx..."
|
|
service nginx start
|
|
|
|
echo "Starting backend service..."
|
|
python -m uvicorn backend.asgi:application \
|
|
--host 0.0.0.0 \
|
|
--port 8900 \
|
|
--workers 1 |