|
|
hace 3 meses | |
|---|---|---|
| applications | hace 3 meses | |
| routes | hace 3 meses | |
| .gitignore | hace 10 meses | |
| Dockerfile | hace 4 meses | |
| LICENSE | hace 1 año | |
| README.md | hace 3 meses | |
| app_config.toml | hace 3 meses | |
| docker-compose.yaml | hace 4 meses | |
| requirements.txt | hace 1 año | |
| task_app.py | hace 3 meses |
description: a server for long_articles project experiments and tasks
hypercorn task_app:app --config app_config.toml
docker compose up -d
.
├── Dockerfile
├── LICENSE
├── README.md
├── app_config.toml
├── applications
│ ├── __init__.py
│ ├── api
│ │ ├── __init__.py
│ │ └── async_feishu_api.py
│ ├── config
│ │ ├── __init__.py
│ │ ├── aliyun_log_config.py
│ │ └── mysql_config.py
│ ├── database
│ │ ├── __init__.py
│ │ └── mysql_pools.py
│ ├── service
│ │ ├── __init__.py
│ │ ├── get_cover.py
│ │ └── log_service.py
│ ├── tasks
│ │ ├── __init__.py
│ │ ├── monitor_tasks
│ │ │ ├── __init__.py
│ │ │ └── kimi_balance.py
│ │ └── task_scheduler.py
│ └── utils
│ ├── __init__.py
│ ├── async_http_client.py
│ ├── get_cover.py
│ └── response.py
├── dev
│ ├── dev.py
│ └── run_task_dev.py
├── docker-compose.yaml
├── requirements.txt
├── routes
│ ├── __init__.py
│ └── blueprint.py
└── task_app.py