File tree 2 files changed +41
-0
lines changed
2 files changed +41
-0
lines changed Original file line number Diff line number Diff line change
1
+ {
2
+ "name" : " IT-Tools Dev Container" ,
3
+ "image" : " mcr.microsoft.com/devcontainers/javascript-node" ,
4
+ "customizations" : {
5
+ "vscode" : {
6
+ "extensions" : [
7
+ " Vue.volar" ,
8
+ " dbaeumer.vscode-eslint" ,
9
+ " Lokalise.i18n-ally" ,
10
+ " eamodio.gitlens"
11
+ ],
12
+ "settings" : {
13
+ "editor.formatOnSave" : false ,
14
+ "editor.codeActionsOnSave" : {
15
+ "source.fixAll.eslint" : true
16
+ },
17
+ "i18n-ally.localesPaths" : [
18
+ " locales" ,
19
+ " src/tools/*/locales"
20
+ ],
21
+ "i18n-ally.keystyle" : " nested"
22
+ }
23
+ }
24
+ },
25
+ "postCreateCommand" : " sudo cp .devcontainer/welcome.txt /usr/local/etc/vscode-dev-containers/first-run-notice.txt" ,
26
+ "postStartCommand" : " npm install -g pnpm && pnpm install" ,
27
+ "forwardPorts" : [5173 ],
28
+ "portsAttributes" : {
29
+ "5173" : {
30
+ "label" : " Vite App - IT-Tools" ,
31
+ "onAutoForward" : " notify"
32
+ }
33
+ }
34
+ }
Original file line number Diff line number Diff line change
1
+ Welcome to the IT-Tools Dev Container! 💻
2
+
3
+ To get started, enter `pnpm dev` on the terminal to run the app locally.
4
+
5
+ Head over to the ./README.md file to know more.
6
+
7
+ Happy coding! :)
You can’t perform that action at this time.
0 commit comments