0476315322
* feat(security): implement CSRF protection * chore: clean up CSRF implementation - Remove unused generateCsrfToken export from security.ts - Remove redundant /csrf-token path check (GET already exempt) - Restore defineConfig wrapper in vitest.config.ts for type safety * add K8S note in README, fix broken e2e * feat/upload-bar (#30) * feat/upload-bar: add a upload bar when user upload file, indicate the upload process * feat/save-loading-status: add save status when click back button from editor * fix: address PR review issues in upload and save features - Replace deprecated substr() with substring() in UploadContext - Fix broken error handling that checked stale task status - Fix missing useEffect dependency in UploadStatus - Fix CSS class conflict in progress bar styling - Add error recovery for save state in Editor (reset on failure) - Use .finally() instead of .then() to ensure refresh on upload failure - Fix inconsistent indentation in UploadContext * fix e2e tests --------- Co-authored-by: Zimeng Xiong <zxzimeng@gmail.com> * chore: pre-release v0.2.1-dev * Update backend/src/security.ts Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * fix filename/math random UUID generation --------- Co-authored-by: AdrianAcala <adrianacala017@gmail.com> Co-authored-by: adamant368 <60790941+Yiheng-Liu@users.noreply.github.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
112 lines
1.5 KiB
Plaintext
112 lines
1.5 KiB
Plaintext
# Dependencies
|
|
frontend/node_modules
|
|
backend/node_modules
|
|
|
|
# Database
|
|
backend/prisma/*.db
|
|
backend/prisma/**/*.db
|
|
backend/prisma/*.db-journal
|
|
backend/prisma/**/*.db-journal
|
|
backend/prisma/dev.db
|
|
backend/prisma/e2e-test.db
|
|
backend/prisma/*.backup
|
|
|
|
# Uploads
|
|
backend/uploads/
|
|
|
|
# Generated files
|
|
backend/src/generated/
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.local
|
|
.env.production
|
|
.env.staging
|
|
|
|
# Build outputs
|
|
frontend/dist/
|
|
frontend/build/
|
|
backend/dist/
|
|
|
|
# E2E Testing
|
|
e2e/node_modules/
|
|
e2e/test-results/
|
|
e2e/test-results-user/
|
|
e2e/playwright-report/
|
|
e2e/playwright-report-user/
|
|
e2e/.playwright/
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|
|
*.bak
|
|
|
|
# Test artifacts (in case they appear in other locations)
|
|
**/playwright-report/
|
|
**/test-results/
|
|
**/playwright/.cache/
|
|
|
|
# Docker volumes (if any temporary ones are created)
|
|
docker-volumes/
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Runtime data
|
|
pids
|
|
*.pid
|
|
*.seed
|
|
*.pid.lock
|
|
|
|
# Coverage directory used by tools like istanbul
|
|
coverage/
|
|
*.lcov
|
|
|
|
# Vitest cache
|
|
.vitest/
|
|
|
|
# Playwright screenshots/videos on failure
|
|
**/screenshots/
|
|
**/videos/
|
|
|
|
# Dependency directories
|
|
jspm_packages/
|
|
|
|
# Optional npm cache directory
|
|
.npm
|
|
|
|
# Optional REPL history
|
|
.node_repl_history
|
|
|
|
# Output of 'npm pack'
|
|
*.tgz
|
|
|
|
# Yarn Integrity file
|
|
.yarn-integrity
|
|
|
|
# dotenv environment variables file
|
|
.env.test
|
|
|
|
# IDE/Editor files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS generated files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp |