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"]