WS-7 PR-1 — bring up self-hosted GlitchTip alongside the existing dev stack. One compose file is portable to the production monitoring host (RFC-WS-7 §3.1). - docker-compose.glitchtip.yml: web/worker/postgres/redis pinned, web bound to 127.0.0.1:8200, internal network for postgres + valkey. - docker/glitchtip/.env.example: documented dev defaults + production checklist; .env itself ignored. - Makefile: services / services-stop merge both compose files; new services-glitchtip-status tail target. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
67 lines
941 B
Plaintext
67 lines
941 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
vendor/
|
|
|
|
# Build outputs
|
|
dist/
|
|
build/
|
|
public/build/
|
|
public/hot
|
|
|
|
# Environment files
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
!.env.example
|
|
|
|
# IDE
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
.DS_Store
|
|
|
|
# Logs
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
storage/logs/*
|
|
!storage/logs/.gitkeep
|
|
|
|
# Laravel
|
|
bootstrap/cache/*
|
|
!bootstrap/cache/.gitkeep
|
|
storage/framework/cache/*
|
|
storage/framework/sessions/*
|
|
storage/framework/views/*
|
|
|
|
# Testing
|
|
.phpunit.result.cache
|
|
coverage/
|
|
|
|
# Misc
|
|
*.pem
|
|
.cache/
|
|
|
|
# Design / assets temp files (e.g. Illustrator)
|
|
resources/**/*.tmp
|
|
resources/**/design-files/
|
|
|
|
# VitePress
|
|
docs/.vitepress/dist
|
|
docs/.vitepress/cache
|
|
|
|
# Local deploy wrapper (per-developer SSH alias)
|
|
/run-deploy-from-local.sh
|
|
!/run-deploy-from-local.example.sh
|
|
|
|
# Claude Project Knowledge sync output (regenerated by scripts/sync-claude-docs.sh)
|
|
.claude-sync/
|
|
|
|
# Claude Code runtime state
|
|
.claude/*.lock
|
|
|
|
# GlitchTip
|
|
docker/glitchtip/.env
|
|
backups/
|