Cease supporting Docker deployments altogether

Other changes:
* Do not use Funkwhale's CI, GitPod, etc
* Support Taskfile.yml (might make future CI builds easier)

Signed-off-by: Shin'ya Minazuki <shinyoukai@laidback.moe>
This commit is contained in:
Shin'ya Minazuki 2026-01-28 10:04:25 -03:00
commit 11d92f33c8
28 changed files with 145 additions and 1642 deletions

19
api/Taskfile.yml Normal file
View file

@ -0,0 +1,19 @@
# https://taskfile.dev
version: '3'
vars:
TASK_LIST: task -l
tasks:
default:
cmds:
- echo "See all available tasks with {{.TASK_LIST}}"
silent: true
install:
desc: Install required dependencies
cmds:
- poetry install
lint:
desc: Format source code
cmds:
- poetry run pylint --recursive=true config funkwhale_api tests