Files
QQuiz/.gitignore
handsomezhuzhu 9a1a9d3247 refactor: remove legacy frontend code and implement new Next.js structure
- Deleted the old Register page and utility functions.
- Removed Tailwind CSS configuration and Vite configuration files.
- Added a new script for starting a single container with FastAPI and Next.js.
- Updated README to reflect the current status of the Next.js frontend.
- Implemented new login and registration API routes with improved error handling.
- Refactored frontend API calls to use the new proxy structure.
- Enhanced error handling in API response processing.
- Updated components to align with the new API endpoints and structure.
2026-04-17 21:15:06 +08:00

59 lines
465 B
Plaintext

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
venv/
env/
ENV/
.venv/
pip-log.txt
*.egg-info/
dist/
build/
# Environment
.env
.env.local
# Database
*.db
*.sqlite3
# Uploads
backend/uploads/
uploads/
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
# OS
.DS_Store
Thumbs.db
# Node
node_modules/
npm-debug.log
yarn-error.log
.pnp/
.pnp.js
# Build
.next/
web/.next/
web/out/
# Testing
.coverage
htmlcov/
.pytest_cache/
# Docker
*.log
docker-compose.override.yml