From 8a6ad2be1f5bd0b247b5ffc3b91c169ef0496d79 Mon Sep 17 00:00:00 2001 From: kolaente Date: Tue, 24 Jun 2025 12:10:34 +0200 Subject: [PATCH] chore(dev): add zed tasks --- .zed/tasks.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .zed/tasks.json diff --git a/.zed/tasks.json b/.zed/tasks.json new file mode 100644 index 000000000..90940bd44 --- /dev/null +++ b/.zed/tasks.json @@ -0,0 +1,12 @@ +// Project tasks configuration. See https://zed.dev/docs/tasks for documentation. +[ + { + "label": "build and run api", + "command": "mage build && ./vikunja" + }, + { + "label": "run frontend dev", + "command": "pnpm dev", + "cwd": "./frontend" + } +]