File size: 525 Bytes
6fd13f8
 
 
 
 
 
 
 
 
 
 
 
 
c4df019
6fd13f8
 
 
 
 
c4df019
6fd13f8
c4df019
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import subprocess
import threading
from fastapi import FastAPI
import uvicorn

app = FastAPI()

@app.get("/")
def root():
    return {"status": "Driver is running. Web status OK."}

def start_driver():
    print("[INFO] Starting shadow driver...", flush=True)
    subprocess.call(["/entrypoint.sh"])

def start_api():
    print("[INFO] FastAPI running on port 8000", flush=True)
    uvicorn.run(app, host="0.0.0.0", port=8000)

if name == "main":
    threading.Thread(target=start_driver, daemon=True).start()
    start_api()