|
|
hai 3 meses | |
|---|---|---|
| applications | hai 3 meses | |
| routes | hai 3 meses | |
| .gitignore | hai 10 meses | |
| Dockerfile | hai 4 meses | |
| LICENSE | hai 1 ano | |
| README.md | hai 4 meses | |
| app_config.toml | hai 3 meses | |
| docker-compose.yaml | hai 4 meses | |
| requirements.txt | hai 1 ano | |
| task_app.py | hai 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
│ ├── 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