mirror of
https://github.com/LiteyukiStudio/LiteyukiBot.git
synced 2025-05-22 20:41:17 +00:00
- Updated .gitignore to include .pytest_cache - Replaced FastAPI with Daemon in main.py for bot execution - Enhanced pyproject.toml with new dependencies and dev group - Added iniconfig package for pytest configuration - Created initial structure for liteyukibot with context management - Implemented configuration loading functions for YAML, JSON, and TOML - Added tests for configuration loading with temporary files - Set up GitHub Actions for pytest testing on push and pull requests
23 lines
204 B
Plaintext
23 lines
204 B
Plaintext
# python and toolchains
|
|
.mypy_cache/
|
|
__pycache__/
|
|
.pytest_cache/
|
|
|
|
# idea
|
|
.idea/
|
|
.vscode/
|
|
.venv/
|
|
venv/
|
|
|
|
# platform
|
|
# macOS
|
|
**/.DS_Store
|
|
# windows
|
|
Thumbs.db
|
|
# linux
|
|
|
|
# development
|
|
.env
|
|
.env.*
|
|
plugins/
|
|
data/ |