|
| 1 | +// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at: |
| 2 | +// https://github.com/microsoft/vscode-dev-containers/tree/v0.236.0/containers/javascript-node-mongo |
| 3 | +// Update the VARIANT arg in docker-compose.yml to pick a Node.js version |
| 4 | +{ |
| 5 | + "name": "NebraskaCoder.com", |
| 6 | + "dockerComposeFile": "docker-compose.yml", |
| 7 | + "service": "app", |
| 8 | + "workspaceFolder": "/workspace", |
| 9 | + |
| 10 | + // Configure tool-specific properties. |
| 11 | + "customizations": { |
| 12 | + // Configure properties specific to VS Code. |
| 13 | + "vscode": { |
| 14 | + "settings": { |
| 15 | + "[javascript]": { |
| 16 | + "editor.defaultFormatter": "esbenp.prettier-vscode" |
| 17 | + }, |
| 18 | + "workbench.iconTheme": "vscode-icons", |
| 19 | + "[typescript]": { |
| 20 | + "editor.defaultFormatter": "esbenp.prettier-vscode" |
| 21 | + }, |
| 22 | + "editor.defaultFormatter": "esbenp.prettier-vscode", |
| 23 | + "vsicons.dontShowNewVersionMessage": true, |
| 24 | + "git.autofetch": true, |
| 25 | + "git.confirmSync": false, |
| 26 | + "files.associations": { |
| 27 | + "*.env.*": "env", |
| 28 | + "*.env.development": "env", |
| 29 | + "*.env.test": "env", |
| 30 | + "*.env.production": "env", |
| 31 | + "*.env.local": "env", |
| 32 | + "*.env.*.local": "env" |
| 33 | + }, |
| 34 | + "git.suggestSmartCommit": false |
| 35 | + }, |
| 36 | + "extensions": [ |
| 37 | + "dbaeumer.vscode-eslint", |
| 38 | + "esbenp.prettier-vscode", |
| 39 | + "irongeek.vscode-env", |
| 40 | + "github.vscode-pull-request-github", |
| 41 | + "ecmel.vscode-html-css", |
| 42 | + "zignd.html-css-class-completion", |
| 43 | + "bradlc.vscode-tailwindcss", |
| 44 | + "austenc.tailwind-docs", |
| 45 | + "mongodb.mongodb-vscode", |
| 46 | + "orta.vscode-jest" |
| 47 | + ] |
| 48 | + } |
| 49 | + }, |
| 50 | + |
| 51 | + // Use 'forwardPorts' to make a list of ports inside the container available locally. |
| 52 | + "forwardPorts": [27017], |
| 53 | + |
| 54 | + // Use 'postCreateCommand' to run commands after the container is created. |
| 55 | + // "postCreateCommand": "npm install", |
| 56 | + |
| 57 | + // Comment out to connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root. |
| 58 | + "remoteUser": "node", |
| 59 | + "features": { |
| 60 | + "kubectl-helm-minikube": "latest", |
| 61 | + "terraform": "latest", |
| 62 | + "git": "os-provided", |
| 63 | + "github-cli": "latest", |
| 64 | + "homebrew": "latest", |
| 65 | + "python": "latest" |
| 66 | + } |
| 67 | +} |
0 commit comments