Files
shelfmark/.vscode/tasks.json
T
CaliBrainandmik593 3a92c5de78 CF BYPASS (#24)
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>
2025-03-16 02:25:15 -04:00

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": []
}
]
}