添加.gitignore文件,排除缓存和临时文件

This commit is contained in:
2026-07-12 01:08:08 +08:00
parent b7b09251f8
commit e3bc88343a
13 changed files with 114 additions and 35 deletions
+114
View File
@@ -0,0 +1,114 @@
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
# C extensions
*.so
# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
# PyInstaller
*.manifest
*.spec
# Installer logs
pip-log.txt
pip-delete-this-directory.txt
# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
.hypothesis/
.pytest_cache/
# Translations
*.mo
*.pot
# Django stuff:
*.log
local_settings.py
db.sqlite3
# Flask stuff:
instance/
.webassets-cache
# Scrapy stuff:
.scrapy
# Sphinx documentation
docs/_build/
# PyBuilder
target/
# Jupyter Notebook
.ipynb_checkpoints
# pyenv
.python-version
# celery beat schedule file
celerybeat-schedule
# SageMath parsed files
*.sage.py
# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/
# Spyder project settings
.spyderproject
.spyproject
# Rope project settings
.ropeproject
# mkdocs documentation
/site
# mypy
.mypy_cache/
# 数据库文件
data/*.db
# PID文件
app.pid
# 日志文件
logs/*.log
# 临时文件
*.tmp
*.bak
Binary file not shown.
-1
View File
@@ -1 +0,0 @@
2706006
Binary file not shown.
-34
View File
@@ -1,34 +0,0 @@
2026-07-12 01:06:36,858 - param_auto_manager - INFO - 初始化数据库...
2026-07-12 01:06:36,859 - apscheduler.scheduler - INFO - Adding job tentatively -- it will be properly scheduled when the scheduler starts
2026-07-12 01:06:36,859 - scheduler - INFO - 添加定时任务: auto_process, 间隔: 300秒
2026-07-12 01:06:36,860 - apscheduler.scheduler - INFO - Added job "auto_process_task" to job store "default"
2026-07-12 01:06:36,860 - apscheduler.scheduler - INFO - Scheduler started
2026-07-12 01:06:36,860 - scheduler - INFO - 定时任务调度器已启动
2026-07-12 01:06:36,861 - param_auto_manager - INFO - 定时任务调度器已启动
2026-07-12 01:06:36,861 - param_auto_manager - INFO - 启动服务,端口: 16043
* Serving Flask app 'app'
* Debug mode: on
2026-07-12 01:06:36,878 - werkzeug - INFO - WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.
* Running on all addresses (0.0.0.0)
* Running on http://127.0.0.1:16043
* Running on http://192.168.0.101:16043
2026-07-12 01:06:36,878 - werkzeug - INFO - Press CTRL+C to quit
2026-07-12 01:06:36,881 - werkzeug - INFO - * Restarting with stat
2026-07-12 01:06:37,478 - param_auto_manager - INFO - 初始化数据库...
2026-07-12 01:06:37,479 - apscheduler.scheduler - INFO - Adding job tentatively -- it will be properly scheduled when the scheduler starts
2026-07-12 01:06:37,479 - scheduler - INFO - 添加定时任务: auto_process, 间隔: 300秒
2026-07-12 01:06:37,480 - apscheduler.scheduler - INFO - Added job "auto_process_task" to job store "default"
2026-07-12 01:06:37,480 - apscheduler.scheduler - INFO - Scheduler started
2026-07-12 01:06:37,481 - scheduler - INFO - 定时任务调度器已启动
2026-07-12 01:06:37,481 - param_auto_manager - INFO - 定时任务调度器已启动
2026-07-12 01:06:37,481 - param_auto_manager - INFO - 启动服务,端口: 16043
2026-07-12 01:06:37,493 - werkzeug - WARNING - * Debugger is active!
2026-07-12 01:06:37,657 - werkzeug - INFO - * Debugger PIN: 854-773-964
2026-07-12 01:06:40,247 - werkzeug - INFO - 127.0.0.1 - - [12/Jul/2026 01:06:40] "GET / HTTP/1.1" 200 -
2026-07-12 01:06:46,294 - werkzeug - INFO - 127.0.0.1 - - [12/Jul/2026 01:06:46] "GET /api/system/stats HTTP/1.1" 200 -
2026-07-12 01:06:46,302 - werkzeug - INFO - 127.0.0.1 - - [12/Jul/2026 01:06:46] "GET /api/products/pending HTTP/1.1" 200 -
2026-07-12 01:06:46,321 - werkzeug - INFO - 127.0.0.1 - - [12/Jul/2026 01:06:46] "GET /api/articles HTTP/1.1" 200 -
2026-07-12 01:06:56,298 - werkzeug - INFO - 127.0.0.1 - - [12/Jul/2026 01:06:56] "POST /api/articles HTTP/1.1" 200 -
2026-07-12 01:06:56,319 - werkzeug - INFO - 127.0.0.1 - - [12/Jul/2026 01:06:56] "POST /api/products/pending HTTP/1.1" 200 -
2026-07-12 01:06:59,746 - werkzeug - INFO - 127.0.0.1 - - [12/Jul/2026 01:06:59] "GET /api/articles/search?q=GPT-4o HTTP/1.1" 200 -
2026-07-12 01:06:59,757 - werkzeug - INFO - 127.0.0.1 - - [12/Jul/2026 01:06:59] "GET /api/products/pending HTTP/1.1" 200 -
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.