mirror of
https://github.com/open-metadata/OpenMetadata
synced 2026-05-24 09:39:11 +00:00
47 lines
1.2 KiB
JSON
47 lines
1.2 KiB
JSON
|
|
{
|
||
|
|
"name": "OpenMetadata - Development",
|
||
|
|
"build": {
|
||
|
|
"dockerfile": "Dockerfile",
|
||
|
|
"context": "../.."
|
||
|
|
},
|
||
|
|
"features": {
|
||
|
|
"ghcr.io/devcontainers/features/docker-in-docker:2": {},
|
||
|
|
"ghcr.io/devcontainers/features/java:1": {
|
||
|
|
"version": "21",
|
||
|
|
"installMaven": true,
|
||
|
|
"mavenVersion": "3.9.9"
|
||
|
|
},
|
||
|
|
"ghcr.io/devcontainers/features/python:1": {
|
||
|
|
"version": "3.11"
|
||
|
|
},
|
||
|
|
"ghcr.io/devcontainers/features/node:1": {
|
||
|
|
"version": "22.17.0"
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"postCreateCommand": "npm install -g yarn@1.22.22 --force && bash .devcontainer/dev/post-create.sh",
|
||
|
|
"customizations": {
|
||
|
|
"vscode": {
|
||
|
|
"extensions": [
|
||
|
|
"vscjava.vscode-java-pack",
|
||
|
|
"ms-python.python",
|
||
|
|
"ms-python.vscode-pylance",
|
||
|
|
"dbaeumer.vscode-eslint",
|
||
|
|
"esbenp.prettier-vscode",
|
||
|
|
"eamodio.gitlens",
|
||
|
|
"redhat.vscode-yaml"
|
||
|
|
],
|
||
|
|
"settings": {
|
||
|
|
"editor.formatOnSave": true
|
||
|
|
}
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"remoteEnv": {
|
||
|
|
"PATH": "${containerEnv:PATH}:${containerEnv:HOME}/.local/bin"
|
||
|
|
},
|
||
|
|
"remoteUser": "vscode",
|
||
|
|
"forwardPorts": [3000],
|
||
|
|
"portsAttributes": {
|
||
|
|
"3000": { "label": "Frontend Dev Server" }
|
||
|
|
}
|
||
|
|
}
|