Select a project
+Choose a project from the sidebar or create a new one
+Not configured
+ diff --git a/backend/app/main.py b/backend/app/main.py index 27faaaf..344a2c5 100644 --- a/backend/app/main.py +++ b/backend/app/main.py @@ -1,5 +1,6 @@ """ TicketHub - Lightweight Issue Tracking System +Professional Edition """ from fastapi import FastAPI from fastapi.middleware.cors import CORSMiddleware @@ -18,7 +19,7 @@ async def lifespan(app: FastAPI): app = FastAPI( title="TicketHub", description="Lightweight open-source ticket/issue tracking system", - version="1.0.0", + version="2.0.0", lifespan=lifespan ) @@ -36,17 +37,531 @@ app.include_router(projects.router, prefix="/api/projects", tags=["projects"]) app.include_router(tickets.router, prefix="/api/tickets", tags=["tickets"]) app.include_router(webhooks.router, prefix="/api/webhooks", tags=["webhooks"]) -# Serve embedded frontend +# Professional Frontend HTML = """ -
Choose a project from the sidebar or create a new one
+Not configured
+ Choose a project from the sidebar or create a new one
+Not configured
+