Add files via upload

This commit is contained in:
Urlo30
2024-12-29 23:18:53 +01:00
committed by GitHub
parent 76987906b5
commit fb60e99822
40 changed files with 5170 additions and 0 deletions

18
run.py Normal file
View File

@@ -0,0 +1,18 @@
from fastapi import FastAPI
from mediaflow_proxy.main import app as mediaflow_app # Import mediaflow app
import httpx
import re
import string
# Initialize the main FastAPI application
main_app = FastAPI()
# Manually add only non-static routes from mediaflow_app
for route in mediaflow_app.routes:
if route.path != "/": # Exclude the static file path
main_app.router.routes.append(route)
# Run the main app
if __name__ == "__main__":
import uvicorn
uvicorn.run(main_app, host="0.0.0.0", port=8080)