投流数据文章相关服务开发

luojunhui d82e766272 position2 use pqvideo il y a 1 jour
applications d82e766272 position2 use pqvideo il y a 1 jour
routes bb79b9b1fb init il y a 2 jours
.gitignore 18a8b26662 2025-01-03 修改gitignore文件 il y a 6 mois
Dockerfile 7bcfa572f0 init il y a 2 jours
LICENSE d3cfb36cda Initial commit il y a 11 mois
README.md f8834ca507 update markdown il y a 2 jours
app_config.toml 9bf532caa6 update prot il y a 2 jours
docker-compose.yaml 7aa217a476 init il y a 2 jours
requirements.txt a8a9bbc54c 提交测试版本 il y a 11 mois
task_app.py c2ddb8af88 Changes il y a 2 jours

README.md

LongArticleTaskServer

description: a server for long_articles project experiments and tasks

启动服务

use hypercorn

hypercorn task_app:app --config app_config.toml

use docker

docker compose up -d

项目结构

├── Dockerfile
├── LICENSE
├── README.md
├── app_config.toml
├── applications
│   ├── api
│   │   └── aliyun_log_api.py
│   ├── config
│   │   ├── __init__.py
│   │   └── mysql_config.py
│   ├── database
│   │   ├── __init__.py
│   │   └── mysql_pools.py
│   ├── service
│   │   ├── __init__.py
│   │   ├── get_cover.py
│   │   └── response.py
│   └── utils
│       ├── __init__.py
│       └── get_cover.py
├── dev
│   └── dev.py
├── docker-compose.yaml
├── requirements.txt
├── routes
│   ├── __init__.py
│   └── blueprint.py
└── task_app.py