- .gitignore: the bare 'logs' rule was matching the api/logs/ source dir, so the route was never committed. Anchor it to /logs/ and repair two log globs where '*' had been mangled to '_'. - route.ts: add the missing 'import sql' — the file used sql but never imported it, so every GET/POST /api/logs threw ReferenceError and 500'd.
58 lines
654 B
Plaintext
58 lines
654 B
Plaintext
# dependencies (yarn install)
|
|
node_modules
|
|
**/node_modules
|
|
package-lock.json
|
|
.pnp.*
|
|
.yarn/*
|
|
!.yarn/patches
|
|
!.yarn/plugins
|
|
!.yarn/releases
|
|
!.yarn/sdks
|
|
!.yarn/versions
|
|
|
|
# output
|
|
out
|
|
dist
|
|
*.tgz
|
|
|
|
# code coverage
|
|
coverage
|
|
*.lcov
|
|
|
|
# logs
|
|
/logs/
|
|
*.log
|
|
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
|
|
|
|
# dotenv environment variable files
|
|
.env
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
.env.local
|
|
|
|
# caches
|
|
.eslintcache
|
|
.cache
|
|
*.tsbuildinfo
|
|
|
|
# IntelliJ based IDEs
|
|
.idea
|
|
|
|
# Finder (MacOS) folder config
|
|
.DS_Store
|
|
|
|
e2b.local.toml
|
|
e2b.*.local.toml
|
|
|
|
**/.react-router
|
|
apps/mobile/caches/*
|
|
|
|
# anything
|
|
.anything
|
|
|
|
# playwright
|
|
playwright-report
|
|
test-results
|
|
|