Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,18 @@ 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


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
Expand Down
15 changes: 15 additions & 0 deletions inkeep_mcp_server/app.py
Original file line number Diff line number Diff line change
@@ -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")