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" + } +]