this repo has no description
0
fork

Configure Feed

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

fix(infra): set correct ownership on prompts directory

Container runs as bun user (UID 1000), so uploaded files need to be
owned by that user to be readable.

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

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

alice 5d91e937 ba2872ad

+3 -1
+1
infra/deploy.sh
··· 466 466 467 467 ssh -T -o StrictHostKeyChecking=no "root@$SERVER_IP" "mkdir -p /opt/assistant/prompts" 468 468 scp -o StrictHostKeyChecking=no "$prompt_file" "root@$SERVER_IP:/opt/assistant/prompts/SYSTEM_PROMPT.md" 469 + ssh -T -o StrictHostKeyChecking=no "root@$SERVER_IP" "chown -R 1000:1000 /opt/assistant/prompts" 469 470 log_success "System prompt uploaded" 470 471 } 471 472
+2 -1
infra/sync-prompt.sh
··· 37 37 38 38 log_info "Syncing system prompt to $SERVER_IP..." 39 39 40 - # Upload prompt 40 + # Upload prompt and fix permissions (container runs as bun user, UID 1000) 41 41 scp -o StrictHostKeyChecking=no "$PROMPT_FILE" "root@$SERVER_IP:/opt/assistant/prompts/SYSTEM_PROMPT.md" 42 + ssh -o StrictHostKeyChecking=no "root@$SERVER_IP" "chown 1000:1000 /opt/assistant/prompts/SYSTEM_PROMPT.md" 42 43 log_success "Prompt uploaded" 43 44 44 45 # Restart app container only (fast, no rebuild)