24 lines
517 B
JSON
24 lines
517 B
JSON
{
|
|
"name": "URL Shortener Backend",
|
|
"dockerFile": "Dockerfile",
|
|
"remoteUser": "node",
|
|
"workspaceFolder": "/workspaces",
|
|
"workspaceMount": "source=${localWorkspaceFolder}/backend,target=/workspaces,type=bind",
|
|
"forwardPorts": [
|
|
3000
|
|
],
|
|
"customizations": {
|
|
"vscode": {
|
|
"settings": {
|
|
"terminal.integrated.defaultProfile.linux": "bash",
|
|
"biome.enable": true
|
|
},
|
|
"extensions": [
|
|
"biomejs.biome",
|
|
"Prisma.prisma",
|
|
"humao.rest-client"
|
|
]
|
|
}
|
|
},
|
|
"postCreateCommand": "bun install"
|
|
} |