-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🔀 Merge pull request #1575 from twsouthwick/devcontainer
Add devcontainer support
- Loading branch information
Showing
6 changed files
with
135 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
// For format details, see https://aka.ms/devcontainer.json. For config options, see the | ||
// README at: https://github.com/devcontainers/templates/tree/main/src/javascript-node | ||
{ | ||
"name": "Dashy", | ||
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile | ||
"image": "mcr.microsoft.com/devcontainers/javascript-node:1-18-bullseye", | ||
"customizations": { | ||
"vscode": { | ||
"extensions": [ | ||
"Vue.volar", | ||
"dbaeumer.vscode-eslint", | ||
"ms-azuretools.vscode-docker", | ||
"ms-edgedevtools.vscode-edge-devtools", | ||
"firefox-devtools.vscode-firefox-debug", | ||
"aaravb.chrome-extension-developer-tools" | ||
] | ||
} | ||
}, | ||
|
||
// Features to add to the dev container. More info: https://containers.dev/features. | ||
"features": { | ||
"ghcr.io/devcontainers/features/github-cli:1": {} | ||
}, | ||
|
||
// Use 'forwardPorts' to make a list of ports inside the container available locally. | ||
// "forwardPorts": [], | ||
|
||
// Use 'postCreateCommand' to run commands after the container is created. | ||
"postCreateCommand": "yarn install --ignore-engines --immutable --no-cache --network-timeout 300000 --network-concurrency 1" | ||
|
||
// Configure tool-specific properties. | ||
// "customizations": {}, | ||
|
||
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root. | ||
// "remoteUser": "root" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# To get started with Dependabot version updates, you'll need to specify which | ||
# package ecosystems to update and where the package manifests are located. | ||
# Please see the documentation for more information: | ||
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates | ||
# https://containers.dev/guide/dependabot | ||
|
||
version: 2 | ||
updates: | ||
- package-ecosystem: "devcontainers" | ||
directory: "/" | ||
schedule: | ||
interval: weekly |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,6 @@ yarn-error.log* | |
|
||
# Editor directories and files | ||
.idea | ||
.vscode | ||
*.suo | ||
*.ntvs* | ||
*.njsproj | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
{ | ||
// 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": [ | ||
{ | ||
"type": "msedge", | ||
"request": "launch", | ||
"name": "dashy: edge", | ||
"url": "http://localhost:8080", | ||
"webRoot": "${workspaceFolder}", | ||
"breakOnLoad": true, | ||
"pathMapping": { | ||
"/_karma_webpack_": "${workspaceFolder}" | ||
}, | ||
"sourceMapPathOverrides": { | ||
"webpack:/*": "${webRoot}/*", | ||
"/./*": "${webRoot}/*", | ||
"/src/*": "${webRoot}/*", | ||
"/*": "*", | ||
"/./~/*": "${webRoot}/node_modules/*" | ||
}, | ||
"preLaunchTask": "dashy start" | ||
}, | ||
{ | ||
"type": "chrome", | ||
"request": "launch", | ||
"name": "dashy: chrome", | ||
"url": "http://localhost:8080", | ||
"webRoot": "${workspaceFolder}", | ||
"breakOnLoad": true, | ||
"pathMapping": { | ||
"/_karma_webpack_": "${workspaceFolder}" | ||
}, | ||
"sourceMapPathOverrides": { | ||
"webpack:/*": "${webRoot}/*", | ||
"/./*": "${webRoot}/*", | ||
"/src/*": "${webRoot}/*", | ||
"/*": "*", | ||
"/./~/*": "${webRoot}/node_modules/*" | ||
}, | ||
"preLaunchTask": "dashy start" | ||
}, | ||
{ | ||
"type": "firefox", | ||
"request": "launch", | ||
"name": "dashy: firefox", | ||
"url": "http://localhost:8080", | ||
"webRoot": "${workspaceFolder}", | ||
"breakOnLoad": true, | ||
"pathMapping": { | ||
"/_karma_webpack_": "${workspaceFolder}" | ||
}, | ||
"sourceMapPathOverrides": { | ||
"webpack:/*": "${webRoot}/*", | ||
"/./*": "${webRoot}/*", | ||
"/src/*": "${webRoot}/*", | ||
"/*": "*", | ||
"/./~/*": "${webRoot}/node_modules/*" | ||
}, | ||
"preLaunchTask": "dashy start" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "dashy start", | ||
"type": "npm", | ||
"script": "dev", | ||
"isBackground": true, | ||
"problemMatcher": [ | ||
{ | ||
"base": "$tsc-watch", | ||
"background": { | ||
"activeOnStart": true, | ||
"beginsPattern": "Starting development server", | ||
"endsPattern": "Compiled successfully" | ||
} | ||
} | ||
], | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters