Add taskfile

Signed-off-by: Nikolai Rodionov <allanger@badhouseplants.net>
This commit is contained in:
2026-04-27 18:30:03 +02:00
parent 4bb087cc87
commit 7dab65f1df

12
Taskfile.yml Normal file
View File

@@ -0,0 +1,12 @@
# yaml-language-server: $schema=https://taskfile.dev/schema.json
version: "3"
vars:
DEFAULT_PORT: 8080
tasks:
serve:
desc: Run web-server
cmd: flutter run -d web-server --web-port 8080
silent: true