mirror of
https://github.com/apache/superset.git
synced 2026-04-07 18:35:15 +00:00
20 lines
459 B
JSON
20 lines
459 B
JSON
{
|
|
// Extend the base configuration
|
|
"extends": "../devcontainer-base.json",
|
|
|
|
"name": "Apache Superset Development (Default)",
|
|
|
|
// Forward ports for development
|
|
"forwardPorts": [9001],
|
|
"portsAttributes": {
|
|
"9001": {
|
|
"label": "Superset (via Webpack Dev Server)",
|
|
"onAutoForward": "notify",
|
|
"visibility": "public"
|
|
}
|
|
},
|
|
|
|
// Auto-start Superset on Codespace resume
|
|
"postStartCommand": ".devcontainer/start-superset.sh"
|
|
}
|