Skip to content

Instantly share code, notes, and snippets.

@rodrigoprestesmachado
Last active April 8, 2024 12:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rodrigoprestesmachado/84feb44d39bb944f4581cbb8c55e032d to your computer and use it in GitHub Desktop.
Save rodrigoprestesmachado/84feb44d39bb944f4581cbb8c55e032d to your computer and use it in GitHub Desktop.
Configuração do codespace para PW2 e VVS
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/java
{
"name": "Java",
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
"image": "mcr.microsoft.com/devcontainers/java:21",
"features": {
"ghcr.io/devcontainers/features/java:1": {},
"ghcr.io/devcontainers/features/node:1": {},
"ghcr.io/devcontainers-contrib/features/quarkus-sdkman:2": {},
"ghcr.io/devcontainers/features/docker-in-docker:2": {},
"ghcr.io/devcontainers-contrib/features/maven-sdkman:2": {}
},
// 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": "java -version",
// Configure tool-specific properties.
"customizations": {
"vscode": {
"extensions": [
"Equinusocio.vsc-material-theme-icons",
"ybaumes.highlight-trailing-white-spaces",
"amodio.amethyst-theme",
"vscjava.vscode-java-pack",
"redhat.vscode-quarkus",
"redhat.vscode-microprofile-pack",
"eamodio.gitlens",
"rangav.vscode-thunder-client",
"vscjava.vscode-lombok",
"GitHub.copilot",
"GitHub.copilot-chat",
"GitHub.vscode-github-actions",
"GitHub.vscode-pull-request-github",
"cweijan.vscode-mysql-client2",
"cracrayol.java-pmd",
"SonarSource.sonarlint-vscode",
"streetsidesoftware.code-spell-checker-portuguese-brazilian"
],
"settings": {
"workbench.colorTheme": "Default Light Modern",
"workbench.iconTheme": "eq-material-theme-icons-light",
"editor.rulers": [80,120],
"workbench.colorCustomizations": {
"editorRuler.foreground": "#F3F7FF"
},
"cSpell.enabled": true,
"cSpell.language": "pt_BR, en, pt"
}
}
}
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
}
@rodrigoprestesmachado
Copy link
Author

Desabilitando a extensão do quarkus

@rodrigoprestesmachado
Copy link
Author

Spell

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment