- Added Preview module dialog showing all configured modules with their content - Preview shows passages, listening sections, writing tasks, speaking parts - Displays module badges (timer, difficulty, access type) - Improved submit toast: shows exam ID, status, and duration (8s) - Preview button now enabled when a module is active - Added .vite to .gitignore, added .dockerignore Made-with: Cursor
37 lines
324 B
Plaintext
37 lines
324 B
Plaintext
# Dependencies
|
|
node_modules/
|
|
|
|
# Build output
|
|
dist/
|
|
build/
|
|
.next/
|
|
out/
|
|
|
|
# Environment / secrets — never commit
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
.env.local
|
|
.env.production
|
|
.env.*.local
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Logs
|
|
*.log
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Vite cache
|
|
.vite/
|