point / .gitignore
eithney
Refactor application to Flask: enhance structure with RESTful API, static file support, and logging. Update Dockerfile for production with Gunicorn and health checks. Expand requirements for Flask and OpenSearch integration.
b0a1454
Raw
History Blame Contribute Delete
826 Bytes
# Python 编译文件
*.pyc
*.pyo
*.pyd
__pycache__/
*.py[cod]
*$py.class
# C 扩展
*.so
# 分发/打包
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
# PyInstaller
*.manifest
*.spec
# 单元测试 / 覆盖率
htmlcov/
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
.hypothesis/
.pytest_cache/
# 虚拟环境
venv/
ENV/
env/
.venv
# Flask
instance/
.webassets-cache
*.db
# 日志文件
logs/
*.log
# 环境变量
.env
.env.local
# IDE
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store
# 备份文件
*.backup
*.bak
*.old
# Jupyter Notebook
.ipynb_checkpoints
# pyenv
.python-version
# pipenv
Pipfile.lock
# poetry
poetry.lock
# 项目特定
# 如果不想提交某些大文件或临时文件,在这里添加