mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-08-03 22:02:08 +03:00
T-20 — .gitignore cleanup: - Add .analysis/ and antigravity-manager-analysis/ to gitignore - Whitelist FASE docs, PLANO-IMPLANTACAO.md, TASKS.md T-21 — Error pages: - Create not-found.js (404 page with gradient design) - Create global-error.js (root error boundary with dev details) T-36 — Breadcrumbs: - Create Breadcrumbs.js with path-to-label mapping and ARIA semantics T-37 — Empty states: - Create EmptyState.js with bounce animation and optional CTA T-45 — Request telemetry: - Create requestTelemetry.js (7-phase lifecycle, p50/p95/p99 aggregation) T-46 — Domain extraction: - Create comboResolver.js (priority/round-robin/random/least-used strategies) - Create lockoutPolicy.js (sliding window lockout with force-unlock) Tests: 13/13 new tests pass (88/88 total)
83 lines
1.2 KiB
Plaintext
83 lines
1.2 KiB
Plaintext
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
|
|
|
# dependencies
|
|
/node_modules
|
|
/.pnp
|
|
.pnp.*
|
|
.yarn/*
|
|
!.yarn/patches
|
|
!.yarn/plugins
|
|
!.yarn/releases
|
|
!.yarn/versions
|
|
|
|
# testing
|
|
/coverage
|
|
|
|
# next.js
|
|
/.next/
|
|
/out/
|
|
|
|
# production
|
|
/build
|
|
/app
|
|
cloud/*
|
|
|
|
# misc
|
|
.DS_Store
|
|
*.pem
|
|
|
|
# debug
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
.pnpm-debug.log*
|
|
|
|
# env files (can opt-in for committing if needed)
|
|
.env*
|
|
!.env.example
|
|
|
|
# vercel
|
|
.vercel
|
|
|
|
# typescript
|
|
*.tsbuildinfo
|
|
next-env.d.ts
|
|
|
|
# data and logs
|
|
data/
|
|
logs/*
|
|
|
|
# analysis directories (generated, not tracked)
|
|
.analysis/
|
|
antigravity-manager-analysis/
|
|
|
|
# docs (allow specific tracked files)
|
|
docs/*
|
|
!docs/ARCHITECTURE.md
|
|
!docs/CODEBASE_DOCUMENTATION.md
|
|
!docs/CONTRIBUTING.md
|
|
!docs/EXECUTION_CONTEXT_PROVIDER_SYNC.md
|
|
!docs/TASK_NEBIUS_BACKEND_ENABLEMENT.md
|
|
!docs/frontend-backend-provider-gap-report.md
|
|
!docs/openapi.yaml
|
|
!docs/PLANO-IMPLANTACAO.md
|
|
!docs/TASKS.md
|
|
!docs/FASE-*.md
|
|
!docs/adr/
|
|
!docs/cli-tools/
|
|
!docs/planning/
|
|
!docs/improvement-plans/
|
|
!docs/api/
|
|
|
|
# open-sse tests
|
|
open-sse/test/*
|
|
|
|
# Ignore vscode AI rules
|
|
.github/instructions/codacy.instructions.md
|
|
|
|
# Playwright
|
|
test-results/
|
|
playwright-report/
|
|
blob-report/
|
|
cloud/
|