very basic dockerfile and continue config
parent
c0bfbda048
commit
2df2329e96
@ -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
|
@ -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
|
@ -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"]
|
Loading…
Reference in New Issue