Fix in-DB frontend serving its own index.html instead of the Oracle 26ai one

Moved index_indb.html into a dedicated frontend/indb/ subdirectory so the
in-DB backend (port 8002) serves the correct purple Oracle In-DB UI at /ui/.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-19 11:43:11 +02:00
parent 4e68b2f226
commit 31ea0143d0
2 changed files with 180 additions and 1 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ load_dotenv()
PHOTOS_DIR = os.getenv("PHOTOS_DIR")
FRONTEND_DIR = os.path.join(os.path.dirname(__file__), "../../oravector-demo/frontend")
FRONTEND_DIR = os.path.join(os.path.dirname(__file__), "../../oravector-demo/frontend/indb")
app = FastAPI()
app.add_middleware(CORSMiddleware, allow_origins=["*"], allow_methods=["*"], allow_headers=["*"])