feat: 初始化项目
This commit is contained in:
commit
4372d7c52d
|
|
@ -0,0 +1,69 @@
|
|||
# macOS
|
||||
.DS_Store
|
||||
.AppleDouble
|
||||
.LSOverride
|
||||
.Spotlight-V100
|
||||
.Trashes
|
||||
.VolumeIcon.icns
|
||||
Icon?
|
||||
|
||||
# Python
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
*$py.class
|
||||
*.pyo
|
||||
*.pyd
|
||||
*.so
|
||||
|
||||
# Packaging / build
|
||||
build/
|
||||
dist/
|
||||
*.egg-info/
|
||||
.eggs/
|
||||
pip-wheel-metadata/
|
||||
*.whl
|
||||
|
||||
# Virtual environments
|
||||
.venv/
|
||||
venv/
|
||||
env/
|
||||
ENV/
|
||||
env.bak/
|
||||
venv.bak/
|
||||
|
||||
# Test / coverage
|
||||
.pytest_cache/
|
||||
.cache/
|
||||
coverage.xml
|
||||
.coverage
|
||||
htmlcov/
|
||||
|
||||
# IDEs / editors
|
||||
.vscode/
|
||||
.idea/
|
||||
*.sublime-project
|
||||
*.sublime-workspace
|
||||
|
||||
# Jupyter
|
||||
.ipynb_checkpoints
|
||||
*.ipynb
|
||||
|
||||
# Logs / local config / secrets
|
||||
*.log
|
||||
local_settings.py
|
||||
.env
|
||||
.env.*
|
||||
secrets.json
|
||||
|
||||
# OS / misc
|
||||
Thumbs.db
|
||||
desktop.ini
|
||||
|
||||
# Docker / container local overrides
|
||||
docker-compose.override.yml
|
||||
|
||||
# Node (if present)
|
||||
node_modules/
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
|
|
@ -0,0 +1 @@
|
|||
3.13.0
|
||||
Loading…
Reference in New Issue