Skip to content

Commit

Permalink
chore(config): added launch.json with run configurations
Browse files Browse the repository at this point in the history
  • Loading branch information
MAXOUXAX committed May 10, 2024
1 parent a25a1cb commit 26adc5d
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"command": "npm run dev",
"name": "Fastify Server",
"request": "launch",
"type": "node-terminal",
"cwd": "${workspaceFolder}/backend"
},
{
"command": "npm run start",
"name": "Expo Server",
"request": "launch",
"type": "node-terminal",
"cwd": "${workspaceFolder}/expo"
},
{
"type": "expo",
"request": "attach",
"name": "Debug Expo app",
"projectRoot": "${workspaceFolder}/expo",
"bundlerPort": "8081",
"bundlerHost": "127.0.0.1"
}
],
"compounds": [
{
"name": "Start Expo and backend",
"configurations": ["Expo Server", "Fastify Server", "Debug Expo app"]
}
]
}

0 comments on commit 26adc5d

Please sign in to comment.