settings.local.json 668 B

1234567891011121314151617181920212223
  1. {
  2. "permissions": {
  3. "allow": [
  4. "Bash(git commit *)",
  5. "Bash(npm init *)",
  6. "Bash(npm install *)",
  7. "Bash(npx tsx *)",
  8. "Bash(npx drizzle-kit *)",
  9. "Bash(npx vitest *)",
  10. "Bash(mkdir -p src/lib/queue)",
  11. "Bash(touch src/lib/minio.ts)",
  12. "Bash(mkdir -p src/db/schema)",
  13. "Bash(touch src/db/schema/media.ts)",
  14. "Bash(mkdir -p src/actions)",
  15. "Bash(touch src/actions/media.ts)",
  16. "Bash(mkdir -p src/workers)",
  17. "Bash(touch src/workers/media-processor.ts)",
  18. "Bash(ffmpeg *)",
  19. "Bash(mkdir -p tests/integration)",
  20. "Bash(touch tests/integration/media-pipeline.test.ts)"
  21. ]
  22. }
  23. }