first working version
This commit is contained in:
55
exam_system/.gitignore
vendored
Normal file
55
exam_system/.gitignore
vendored
Normal 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
|
||||
Reference in New Issue
Block a user