-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add local ribbon & vscode-code-runner config
Signed-off-by: WoodenMaiden <yann.pomie@laposte.net>
- Loading branch information
1 parent
761ea5c
commit 3c1c7b0
Showing
3 changed files
with
19 additions
and
3 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,6 @@ | ||
{ | ||
"recommendations": [ | ||
"formulahendry.code-runner", | ||
"vscjava.vscode-java-pack" | ||
] | ||
} |
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 |
---|---|---|
@@ -1,9 +1,17 @@ | ||
{ | ||
"maven.terminal.favorites": [ | ||
{ | ||
"command": "package docker:start fizzed-watcher:run -DCATALINA_OPTS='-Dagrold.description=Local -Dagrold.instance=dev'", | ||
"command": "package docker:start fizzed-watcher:run -DCATALINA_OPTS='-Dagrold.description=Local -Dagrold.instance=local'", | ||
"debug": false, | ||
"alias": "Run in container" | ||
} | ||
] | ||
], | ||
"code-runner.executorMapByGlob" : { | ||
"*": "mvn package docker:start fizzed-watcher:run -DCATALINA_OPTS='-Dagrold.description=Local -Dagrold.instance=local' #" | ||
}, | ||
"code-runner.defaultLanguage": "java", | ||
"code-runner.fileDirectoryAsCwd": false, | ||
"code-runner.clearPreviousOutput": false, | ||
"code-runner.runInTerminal": false, | ||
"code-runner.enableAppInsights": false | ||
} |
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