Last active
June 30, 2023 13:29
-
-
Save grabbou/1e19049ebc6127b269f4230bfaed5170 to your computer and use it in GitHub Desktop.
Revisions
-
grabbou revised this gist
Sep 7, 2022 . No changes.There are no files selected for viewing
-
grabbou created this gist
Sep 7, 2022 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,27 @@ { "version": "2.0.0", "tasks": [ { "label": "Start Expo dev server", "type": "shell", "command": "cd ./apps/mobile && yarn start", "presentation": { "reveal": "always", "panel": "new", "group": "develop", }, "runOptions": { "runOn": "folderOpen" }, }, { "label": "Start Vercel dev server", "type": "shell", "command": "cd ./apps/backend && yarn vercel dev", "presentation": { "reveal": "always", "panel": "new", "group": "develop", }, "runOptions": { "runOn": "folderOpen" } } ] }