forked from CorentinTh/it-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds Dev Container configuration (CorentinTh#1393)
Adds necessary settings, extensions, and ports to access.
- Loading branch information
Showing
2 changed files
with
41 additions
and
0 deletions.
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,34 @@ | ||
{ | ||
"name": "IT-Tools Dev Container", | ||
"image": "mcr.microsoft.com/devcontainers/javascript-node", | ||
"customizations": { | ||
"vscode": { | ||
"extensions": [ | ||
"Vue.volar", | ||
"dbaeumer.vscode-eslint", | ||
"Lokalise.i18n-ally", | ||
"eamodio.gitlens" | ||
], | ||
"settings": { | ||
"editor.formatOnSave": false, | ||
"editor.codeActionsOnSave": { | ||
"source.fixAll.eslint": true | ||
}, | ||
"i18n-ally.localesPaths": [ | ||
"locales", | ||
"src/tools/*/locales" | ||
], | ||
"i18n-ally.keystyle": "nested" | ||
} | ||
} | ||
}, | ||
"postCreateCommand": "sudo cp .devcontainer/welcome.txt /usr/local/etc/vscode-dev-containers/first-run-notice.txt", | ||
"postStartCommand": "npm install -g pnpm && pnpm install", | ||
"forwardPorts": [5173], | ||
"portsAttributes": { | ||
"5173": { | ||
"label": "Vite App - IT-Tools", | ||
"onAutoForward": "notify" | ||
} | ||
} | ||
} |
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,7 @@ | ||
Welcome to the IT-Tools Dev Container! 💻 | ||
|
||
To get started, enter `pnpm dev` on the terminal to run the app locally. | ||
|
||
Head over to the ./README.md file to know more. | ||
|
||
Happy coding! :) |