2022-05-28 13:08:52 +00:00
|
|
|
// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
|
|
|
|
// https://github.com/microsoft/vscode-dev-containers/tree/v0.233.0/containers/javascript-node
|
|
|
|
{
|
|
|
|
"name": "Node.js",
|
|
|
|
"build": {
|
|
|
|
"dockerfile": "Dockerfile",
|
|
|
|
// Update 'VARIANT' to pick a Node version: 18, 16, 14.
|
|
|
|
// Append -bullseye or -buster to pin to an OS version.
|
|
|
|
// Use -bullseye variants on local arm64/Apple Silicon.
|
2022-05-28 14:58:52 +00:00
|
|
|
"args": {
|
2022-08-29 13:29:00 +00:00
|
|
|
"VARIANT": "18-bullseye"
|
2022-05-28 14:58:52 +00:00
|
|
|
}
|
2022-05-28 13:08:52 +00:00
|
|
|
},
|
|
|
|
// Set *default* container specific settings.json values on container create.
|
|
|
|
"settings": {},
|
|
|
|
// Add the IDs of extensions you want installed when the container is created.
|
2022-07-15 12:31:54 +00:00
|
|
|
"extensions": [
|
2022-07-25 20:40:55 +00:00
|
|
|
"ms-azuretools.vscode-docker",
|
2022-07-15 12:31:54 +00:00
|
|
|
"dbaeumer.vscode-eslint",
|
|
|
|
"svelte.svelte-vscode",
|
|
|
|
"ardenivanov.svelte-intellisense",
|
2022-08-10 11:36:31 +00:00
|
|
|
"Prisma.prisma",
|
2022-09-07 07:15:10 +00:00
|
|
|
"bradlc.vscode-tailwindcss",
|
|
|
|
"waderyan.gitblame"
|
2022-07-15 12:31:54 +00:00
|
|
|
],
|
2022-05-28 13:08:52 +00:00
|
|
|
// Use 'forwardPorts' to make a list of ports inside the container available locally.
|
2022-08-29 13:29:00 +00:00
|
|
|
"forwardPorts": [3000, 3001],
|
2022-05-28 13:08:52 +00:00
|
|
|
// Use 'postCreateCommand' to run commands after the container is created.
|
2022-09-08 04:33:18 +00:00
|
|
|
"postCreateCommand": "cp apps/api/.env.example apps/api/.env && pnpm install && pnpm db:push && pnpm db:seed",
|
2022-05-28 13:08:52 +00:00
|
|
|
// Comment out to connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
|
|
|
|
"remoteUser": "node",
|
|
|
|
"features": {
|
|
|
|
"docker-in-docker": "20.10",
|
|
|
|
"github-cli": "latest"
|
|
|
|
}
|
2022-05-28 15:03:47 +00:00
|
|
|
}
|