chore: gitignore secrets and add docker-compose override

Ignore .env and config/config.json to prevent committing secrets.
Add docker-compose.override.yml with resource limits.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
repfigit 2026-02-15 23:22:21 -05:00
parent 61c917d96f
commit 13b89e1eba
2 changed files with 12 additions and 0 deletions

2
.gitignore vendored
View file

@ -44,3 +44,5 @@ tasks/
# Added by goreleaser init: # Added by goreleaser init:
dist/ dist/
.env
config/config.json

View file

@ -0,0 +1,10 @@
# docker-compose.override.yml
services:
picoclaw-agent:
deploy:
resources:
limits:
memory: 64M
cpus: '0.5'
picoclaw-gateway:
restart: unless-stopped