bun-activitypub/.vscode/tasks.json

38 lines
1,007 B
JSON
Raw Normal View History

{
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"command": "ngrok tunnel --label edge=edghts_2VNJvaPttrFlAPWxrGyVKu0s3ad http://localhost:3000",
"windows":{
"command": "C:\\Users\\death\\AppData\\Local\\Microsoft\\WinGet\\Links\\ngrok tunnel --label edge=edghts_2VNJvaPttrFlAPWxrGyVKu0s3ad http://localhost:3000"
},
"label": "ngrok tunnel",
"detail": "ngrok tunnel --label edge=edghts_2VNJvaPttrFlAPWxrGyVKu0s3ad http://localhost:3000",
"presentation": {
"reveal": "always",
"panel": "dedicated"
}
},
{
"type": "shell",
"command": "bun run --watch src/index.ts",
"label": "bun run",
"detail": "bun run --watch src/index.ts",
"presentation": {
"reveal": "always",
"panel": "dedicated"
}
},
{
"type": "shell",
"command": "docker compose up",
"label": "docker compose up",
"detail": "docker compose up",
"presentation": {
"reveal": "always",
"panel": "dedicated"
}
}
]
}