mirror of
https://github.com/calibrain/shelfmark.git
synced 2026-09-24 19:50:29 +01:00
The Calibre dependency was due to the script testing for validity of the downloaded file, as often they would be corrupted from aa. But CWA is already doing that, so we are just having redundant code here. For the cloudflarebypasser, I basically run my own version now, instead of depending on an external library, this way we have better control for debugging and on the docker image. Fixes #18, #33, #27, #48, #65, #78, #86, #88, #89 --------- Co-authored-by: mik593 <91991279+mik593@users.noreply.github.com>
30 lines
734 B
JSON
30 lines
734 B
JSON
{
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "docker-compose up (dev)",
|
|
"type": "shell",
|
|
"command": "docker-compose -f docker-compose.dev.yml up --build -d",
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"label": "docker-compose down (dev)",
|
|
"type": "shell",
|
|
"command": "docker-compose -f docker-compose.dev.yml down",
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"label": "docker-compose up (prod)",
|
|
"type": "shell",
|
|
"command": "docker-compose -f docker-compose.yml up -d",
|
|
"problemMatcher": []
|
|
},
|
|
{
|
|
"label": "docker-compose down (prod)",
|
|
"type": "shell",
|
|
"command": "docker-compose -f docker-compose.yml down",
|
|
"problemMatcher": []
|
|
}
|
|
]
|
|
}
|