first working version

This commit is contained in:
howard
2025-10-22 20:14:31 +08:00
parent c9767b830b
commit 8dc869634e
118 changed files with 22518 additions and 0 deletions

55
exam_system/.gitignore vendored Normal file
View File

@@ -0,0 +1,55 @@
# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
env/
venv/
*.egg-info/
.eggs/
dist/
build/
# Django
*.log
local_settings.py
db.sqlite3
*.sqlite3
# Node
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Angular
/exam_web/dist/
/exam_web/.angular/
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
# OS
.DS_Store
Thumbs.db
# Data (keep structure, ignore contents)
data/attempts/**/*
data/output/**/*
data/progress/**/*
!data/attempts/.gitkeep
!data/output/.gitkeep
!data/progress/.gitkeep
# Environment
.env
*.env
!env.example
# Docker
*.pid