this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(infra): set data directory ownership for bun user

The app container runs as user bun (UID 1000) but the cloned
data/ directory is owned by root, causing SQLite to fail.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

alice e9760d3d f348f83d

+1
+1
infra/cloud-init.yaml.tmpl
··· 44 44 - mkdir -p /opt 45 45 - git clone https://github.com/__GH_REPO__.git /opt/assistant 46 46 - chmod +x /opt/assistant/deploy.sh 47 + - chown -R 1000:1000 /opt/assistant/data # bun user in container 47 48 48 49 # Generate deploy key for GitHub Actions 49 50 - ssh-keygen -t ed25519 -f /root/.ssh/deploy_key -N "" -C "deploy@assistant"