Skip to content

Commit 1c34945

Browse files
mariamahmad8claude
andcommitted
Fix API key names and manually push Docker image
- Fixed .env template to use ADD_API_KEY (matches test.py expectations) - Manually built and pushed updated Docker image to ghcr.io - All file paths verified and working correctly - Template version updated to 0.4.9 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 93c8091 commit 1c34945

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/goodmem-devcontainer/.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,6 @@
7878
"source=goodmem-postgres-data,target=/var/lib/postgresql/data,type=volume",
7979
"source=goodmem-docker-data,target=/var/lib/docker,type=volume"
8080
],
81-
"postCreateCommand": "bash -c 'if [ ! -f .env ]; then echo \"# GoodMem Configuration\" > .env; echo \"GOODMEM_API_KEY=your-goodmem-api-key-here\" >> .env; echo \"OPENAI_API_KEY=your-openai-api-key-here\" >> .env; echo \"ANTHROPIC_API_KEY=your-anthropic-api-key-here\" >> .env; echo \"\" >> .env; echo \"# GoodMem Server Settings\" >> .env; echo \"GOODMEM_SERVER_URL=http://localhost:8080\" >> .env; echo \"GOODMEM_DEBUG=true\" >> .env; echo \"Created .env file with API key templates\"; else echo \".env file already exists, skipping creation\"; fi && /usr/local/bin/goodmem-setup.sh'",
81+
"postCreateCommand": "bash -c 'if [ ! -f .env ]; then echo \"# GoodMem Configuration\" > .env; echo \"ADD_API_KEY=your-goodmem-api-key-here\" >> .env; echo \"OPENAI_API_KEY=your-openai-api-key-here\" >> .env; echo \"ANTHROPIC_API_KEY=your-anthropic-api-key-here\" >> .env; echo \"\" >> .env; echo \"# GoodMem Server Settings\" >> .env; echo \"GOODMEM_SERVER_URL=http://localhost:8080\" >> .env; echo \"GOODMEM_DEBUG=true\" >> .env; echo \"Created .env file with API key templates\"; else echo \".env file already exists, skipping creation\"; fi && /usr/local/bin/goodmem-setup.sh'",
8282
"remoteUser": "vscode"
8383
}

src/goodmem-devcontainer/devcontainer-template.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"id": "goodmem-devcontainer",
3-
"version": "0.4.8",
3+
"version": "0.4.9",
44
"name": "GoodMem DevContainer",
55
"description": "Prebuilt devcontainer with full multi-language SDK setup for GoodMem projects.",
66
"documentationURL": "https://github.com/PAIR-Systems-Inc/devcontainer",

0 commit comments

Comments
 (0)