├── .claude └── settings.local.json ├── .gitignore ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── TROUBLESHOOTING.md ├── USAGE.md ├── __pycache__ └── app.cpython-310.pyc ├── app.py ├── cleanup_duplicates.py ├── config.toml.example ├── data └── nightscout_data.db ├── docker-compose.yml ├── docker-compose附带Ollma.yml ├── entrypoint.sh ├── ico.png ├── install.sh ├── manual_cleanup.sh ├── performance_validation.py ├── quick-start.sh ├── requirements.txt ├── static ├── ico.png ├── manifest.json └── sw.js ├── templates ├── base.html ├── config.html ├── index.html ├── login.html ├── messages.html └── report.html ├── test_ai_fix.py ├── test_ai_models.py └── test_prediction.py /.claude/settings.local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyhunterl/glucose-buddy/HEAD/.claude/settings.local.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # 忽略ico.png 2 | 3 | # 生产环境配置文件 4 | nginx.conf 5 | config.toml 6 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyhunterl/glucose-buddy/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyhunterl/glucose-buddy/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyhunterl/glucose-buddy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyhunterl/glucose-buddy/HEAD/README.md -------------------------------------------------------------------------------- /TROUBLESHOOTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyhunterl/glucose-buddy/HEAD/TROUBLESHOOTING.md -------------------------------------------------------------------------------- /USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyhunterl/glucose-buddy/HEAD/USAGE.md -------------------------------------------------------------------------------- /__pycache__/app.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyhunterl/glucose-buddy/HEAD/__pycache__/app.cpython-310.pyc -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyhunterl/glucose-buddy/HEAD/app.py -------------------------------------------------------------------------------- /cleanup_duplicates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyhunterl/glucose-buddy/HEAD/cleanup_duplicates.py -------------------------------------------------------------------------------- /config.toml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyhunterl/glucose-buddy/HEAD/config.toml.example -------------------------------------------------------------------------------- /data/nightscout_data.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyhunterl/glucose-buddy/HEAD/data/nightscout_data.db -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyhunterl/glucose-buddy/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker-compose附带Ollma.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyhunterl/glucose-buddy/HEAD/docker-compose附带Ollma.yml -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyhunterl/glucose-buddy/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyhunterl/glucose-buddy/HEAD/ico.png -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyhunterl/glucose-buddy/HEAD/install.sh -------------------------------------------------------------------------------- /manual_cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyhunterl/glucose-buddy/HEAD/manual_cleanup.sh -------------------------------------------------------------------------------- /performance_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyhunterl/glucose-buddy/HEAD/performance_validation.py -------------------------------------------------------------------------------- /quick-start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyhunterl/glucose-buddy/HEAD/quick-start.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyhunterl/glucose-buddy/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/ico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyhunterl/glucose-buddy/HEAD/static/ico.png -------------------------------------------------------------------------------- /static/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyhunterl/glucose-buddy/HEAD/static/manifest.json -------------------------------------------------------------------------------- /static/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyhunterl/glucose-buddy/HEAD/static/sw.js -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyhunterl/glucose-buddy/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyhunterl/glucose-buddy/HEAD/templates/config.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyhunterl/glucose-buddy/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyhunterl/glucose-buddy/HEAD/templates/login.html -------------------------------------------------------------------------------- /templates/messages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyhunterl/glucose-buddy/HEAD/templates/messages.html -------------------------------------------------------------------------------- /templates/report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyhunterl/glucose-buddy/HEAD/templates/report.html -------------------------------------------------------------------------------- /test_ai_fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyhunterl/glucose-buddy/HEAD/test_ai_fix.py -------------------------------------------------------------------------------- /test_ai_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyhunterl/glucose-buddy/HEAD/test_ai_models.py -------------------------------------------------------------------------------- /test_prediction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flyhunterl/glucose-buddy/HEAD/test_prediction.py --------------------------------------------------------------------------------