From 6ccc4f1501dca48248c394ca405b57a314d92f6e Mon Sep 17 00:00:00 2001 From: EYHN Date: Mon, 26 Feb 2024 13:47:06 +0000 Subject: [PATCH] chore: start dev server on devcontainer (#5914) --- .devcontainer/devcontainer.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 191a02c0e9..40d84f828a 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -21,5 +21,6 @@ } }, "updateContentCommand": "bash ./.devcontainer/build.sh", - "postCreateCommand": "bash ./.devcontainer/setup-user.sh" + "postCreateCommand": "bash ./.devcontainer/setup-user.sh", + "postStartCommand": ["yarn dev", "yarn workspace @affine/server dev"] }