Skip to content

Commit

Permalink
Add devcontainer configuration (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
CalvinAllen authored Nov 22, 2024
1 parent 293391c commit de2f70c
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .devcontainer/devcontainer,json
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
"name": "Java",
"image": "mcr.microsoft.com/vscode/devcontainers/java:0-8",
"hostRequirements": {
"cpus": 4,
"memory": "8gb",
"storage": "32gb"
},
"features": {
"ghcr.io/devcontainers/features/java:1.2.1": {
"version": "none",
"installMaven": "false",
"installGradle": "true"
}
},
"postCreateCommand": "java -version",
"customizations": {
"vscode": {
"settings": {
"codestream.serverUrl": "https://codestream-api-v2-us1.service.newrelic.com",
"diffEditor.codeLens": true,
"workbench.colorTheme": "GitHub Dark Default",
"remote.extensionKind": {
"codestream.codestream": [
"workspace"
]
}
},
"extensions": [
"redhat.java",
"codestream.codestream",
"ms-azuretools.vscode-docker"
]
}
}
}

0 comments on commit de2f70c

Please sign in to comment.