fix(tracker-web): format markdown + ignore e2e artifacts in prettier/git
Run Prettier over README and roadmap docs to satisfy format:check, and add .prettierignore plus .gitignore entries for playwright-report/test-results so generated e2e artifacts no longer break the format gate. Generated with [Devin](https://cli.devin.ai/docs) Co-Authored-By: Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com>
This commit is contained in:
parent
d0707f22a5
commit
8738d07da7
6
dashboards/tracker-web/.gitignore
vendored
6
dashboards/tracker-web/.gitignore
vendored
@ -11,6 +11,12 @@
|
|||||||
# testing
|
# testing
|
||||||
/coverage
|
/coverage
|
||||||
|
|
||||||
|
# playwright e2e artifacts
|
||||||
|
/test-results/
|
||||||
|
/playwright-report/
|
||||||
|
/blob-report/
|
||||||
|
/playwright/.cache/
|
||||||
|
|
||||||
# next.js
|
# next.js
|
||||||
/.next/
|
/.next/
|
||||||
/out/
|
/out/
|
||||||
|
|||||||
19
dashboards/tracker-web/.prettierignore
Normal file
19
dashboards/tracker-web/.prettierignore
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
# Build output
|
||||||
|
.next/
|
||||||
|
out/
|
||||||
|
build/
|
||||||
|
|
||||||
|
# Dependencies
|
||||||
|
node_modules/
|
||||||
|
|
||||||
|
# Coverage + test artifacts
|
||||||
|
coverage/
|
||||||
|
test-results/
|
||||||
|
playwright-report/
|
||||||
|
blob-report/
|
||||||
|
|
||||||
|
# Generated / vendored
|
||||||
|
next-env.d.ts
|
||||||
|
*.tsbuildinfo
|
||||||
|
pnpm-lock.yaml
|
||||||
|
package-lock.json
|
||||||
@ -36,6 +36,7 @@ npm run dev # starts on port 3003
|
|||||||
## Environment Variables
|
## Environment Variables
|
||||||
|
|
||||||
See `.env.local.example` for required variables:
|
See `.env.local.example` for required variables:
|
||||||
|
|
||||||
- `PLATFORM_API_URL` — Platform service URL (default `http://localhost:4003`)
|
- `PLATFORM_API_URL` — Platform service URL (default `http://localhost:4003`)
|
||||||
- `JWT_SECRET` — Shared JWT secret
|
- `JWT_SECRET` — Shared JWT secret
|
||||||
- `PRODUCT_ID` — Product scope (e.g., `lysnrai`, `chronomind`, `nomgap`)
|
- `PRODUCT_ID` — Product scope (e.g., `lysnrai`, `chronomind`, `nomgap`)
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user