From bd317492298dad7a2c96103550bad1388842de35 Mon Sep 17 00:00:00 2001 From: Darshanhub Date: Fri, 26 Sep 2025 13:30:01 -0700 Subject: [PATCH 1/3] Add initial changes --- inkeep_mcp_server/app.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/inkeep_mcp_server/app.py b/inkeep_mcp_server/app.py index e16326c..ffe9e5a 100644 --- a/inkeep_mcp_server/app.py +++ b/inkeep_mcp_server/app.py @@ -1,7 +1,22 @@ from fastapi import FastAPI +import os # unnecessary import +import math # unnecessary import from inkeep_mcp_server.server import mcp app = FastAPI() +# Unnecessary constant +DEBUG_MODE = False + +# Unnecessary function +def unused_helper(): + print("This function is never used") + return math.sqrt(16) + +# Redundant comment +# This mounts the sse_app to the root path app.mount("/", mcp.sse_app()) + +# Another unused variable +_ = os.getenv("DUMMY_ENV_VAR", "default") From 55d0b1f6d681a975d71e4a51367c8580ebe7633d Mon Sep 17 00:00:00 2001 From: Darshanhub Date: Fri, 26 Sep 2025 16:58:15 -0700 Subject: [PATCH 2/3] More changes --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 2a38e0b..521e2a1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,6 +16,9 @@ COPY uv.lock uv.lock # Install the project's dependencies using the lockfile and settings RUN uv sync --frozen --no-install-project --no-dev +RUN cd .. +RUN ls -la + # Then, add the rest of the project source code and install it # Installing separately from its dependencies allows optimal layer caching ADD . /app From ca31723ae243abf389eeeb98793e9aafa2643f4b Mon Sep 17 00:00:00 2001 From: Darshanhub Date: Fri, 26 Sep 2025 18:02:52 -0700 Subject: [PATCH 3/3] one more --- Dockerfile | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Dockerfile b/Dockerfile index 521e2a1..9228527 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,6 +19,15 @@ RUN uv sync --frozen --no-install-project --no-dev RUN cd .. RUN ls -la + +RUN cd .. +RUN ls -la + +RUN cd .. +RUN ls -la +RUN cd .. +RUN ls -la + # Then, add the rest of the project source code and install it # Installing separately from its dependencies allows optimal layer caching ADD . /app