- wwwroot/index.ui: 首页入口 - wwwroot/menu.ui: 侧边菜单 - scripts/: 后端逻辑脚本目录 - json/: CRUD数据模型定义目录 - docs/: 项目文档目录 - README.md: 项目说明 - .gitignore: Git忽略规则
36 lines
265 B
Plaintext
36 lines
265 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.pyc
|
|
*.pyo
|
|
*.egg-info/
|
|
*.egg
|
|
dist/
|
|
build/
|
|
.eggs/
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
venv/
|
|
env/
|
|
|
|
# Environment variables
|
|
.env
|
|
.env.*
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Sage
|
|
.pytest_cache/
|
|
*.log
|