变更: - 添加 requirements.txt - 更新 start.sh(使用虚拟环境) - 更新 .gitignore(忽略 venv/和 node_modules/) - 端口调整为 4000/9000
32 lines
211 B
Plaintext
32 lines
211 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
venv/
|
|
ENV/
|
|
env/
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
|
|
# Django
|
|
*.log
|
|
*.pot
|
|
*.pyc
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Node
|
|
node_modules/
|