From 2df2329e96ed97326b7ccf0321c4ede6ca864109 Mon Sep 17 00:00:00 2001 From: Nathan Wagner Date: Tue, 8 Jul 2025 14:17:37 +0000 Subject: [PATCH] very basic dockerfile and continue config --- .continue/assistants/config.yaml | 16 ++++++++++++++++ .continue/mcpServers/kroger.yaml | 20 ++++++++++++++++++++ Dockerfile | 17 +++++++++++++++++ 3 files changed, 53 insertions(+) create mode 100644 .continue/assistants/config.yaml create mode 100644 .continue/mcpServers/kroger.yaml create mode 100644 Dockerfile diff --git a/.continue/assistants/config.yaml b/.continue/assistants/config.yaml new file mode 100644 index 0000000..2715ee4 --- /dev/null +++ b/.continue/assistants/config.yaml @@ -0,0 +1,16 @@ +name: Wagner Home Assistant +version: 1.0.0 +schema: v1 +models: + - name: Autodetect + provider: ollama + model: AUTODETECT + apiBase: http://192.168.0.53 +context: + - provider: code + - provider: docs + - provider: diff + - provider: terminal + - provider: problems + - provider: folder + - provider: codebase \ No newline at end of file diff --git a/.continue/mcpServers/kroger.yaml b/.continue/mcpServers/kroger.yaml new file mode 100644 index 0000000..903877f --- /dev/null +++ b/.continue/mcpServers/kroger.yaml @@ -0,0 +1,20 @@ +name: kroger +version: 1.0.0 +schema: v1 +mcpServers: + - name: kroger + version: 0.0.1 + command: docker + args: + - run + - -i + - --rm + - -e + - KROGER_CLIENT_ID=test-mcp-bbc6sj9m + - -e + - KROGER_CLIENT_SECRET=aZdwYqHKmIm8PwgjcImPTdJ3BKHocWL23c8XG1yI + - -e + - KROGER_REDIRECT_URI="http://localhost:8000/callback" + - -e + - KROGER_USER_ZIP_CODE="43026" + - kroger \ No newline at end of file diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..6110845 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,17 @@ +# Use a newer Python version that supports the required package +FROM python:3.10-slim + +# Set the working directory +WORKDIR /app + +# Copy requirements file +COPY requirements.txt . + +# Install dependencies +RUN pip install --no-cache-dir -r requirements.txt + +# Copy the application code +COPY . . + +# Run the application +CMD ["python", "server.py"]