docs/developer_docs/contributing/howtos.md
This guide contains specific instructions for common development tasks in Superset.
The documentation site is built using Docusaurus. All documentation lives in the docs folder, written in Markdown format.
To set up your local environment for documentation development:
cd docs
npm install
npm run start
The site will be available at http://localhost:3000
To create a production build:
npm run build
npm run serve # Test the build locally
Documentation is automatically deployed when changes are merged to master.
Visualization plugins allow you to add custom chart types to Superset. They are built as npm packages that integrate with the Superset frontend.
npm install -g @superset-ui/generator-superset
mkdir superset-plugin-chart-hello-world
cd superset-plugin-chart-hello-world
yo @superset-ui/superset
superset-plugin-chart-hello-worldDevelop your plugin: The generator creates a complete plugin structure with TypeScript, React components, and build configuration.
Test your plugin locally:
npm run dev
npm link
# In your Superset frontend directory:
npm link superset-plugin-chart-hello-world
superset-frontend/src/visualizations/presets/MainPreset.ts to include your plugin.Run Python tests using pytest:
# Run all tests
pytest
# Run specific test file
pytest tests/unit_tests/test_specific.py
# Run with coverage
pytest --cov=superset
# Run only unit tests
pytest tests/unit_tests
# Run only integration tests
pytest tests/integration_tests
To test against Presto:
# Start Presto locally using Docker
docker run -p 8080:8080 \
--name presto \
-d prestodb/presto
# Configure in superset_config.py
SQLALCHEMY_DATABASE_URI = 'presto://localhost:8080/hive/default'
Run frontend tests using Jest:
cd superset-frontend
# Run all tests
npm run test
# Run with coverage
npm run test -- --coverage
# Run in watch mode
npm run test -- --watch
# Run specific test file
npm run test -- MyComponent.test.tsx
We support both Playwright (recommended) and Cypress for end-to-end testing.
Playwright is our new E2E testing framework, gradually replacing Cypress.
# Navigate to frontend directory
cd superset-frontend
# Run all Playwright tests
npm run playwright:test
# or: npx playwright test
# Run with interactive UI for debugging
npm run playwright:ui
# or: npx playwright test --ui
# Run in headed mode (see browser)
npm run playwright:headed
# or: npx playwright test --headed
# Run specific test file
npx playwright test tests/auth/login.spec.ts
# Run with debug mode (step through tests)
npm run playwright:debug tests/auth/login.spec.ts
# or: npx playwright test --debug tests/auth/login.spec.ts
# Generate test report
npm run playwright:report
Cypress is being phased out in favor of Playwright but is still available:
# Set base URL for Cypress
export CYPRESS_BASE_URL='http://localhost:8088'
export CYPRESS_DATABASE=test
export CYPRESS_USERNAME=admin
export CYPRESS_PASSWORD=admin
# Navigate to Cypress directory
cd superset-frontend/cypress-base
# Run interactively
npm run cypress-debug
# Run headless (like CI)
npm run cypress-run-chrome
# Run specific file
npm run cypress-run-chrome -- --spec "cypress/e2e/dashboard/dashboard.test.ts"
For debugging the Flask backend:
superset/app.pyFLASK_ENV=developmentSUPERSET_CONFIG_PATH=/path/to/superset_config.py.vscode/launch.json:{
"version": "0.2.0",
"configurations": [
{
"name": "Python: Flask",
"type": "python",
"request": "launch",
"module": "flask",
"env": {
"FLASK_APP": "superset/app.py",
"FLASK_ENV": "development"
},
"args": ["run", "--no-debugger", "--no-reload"],
"jinja": true
}
]
}
To debug Flask running in a POD inside a kubernetes cluster, you'll need to make sure the pod runs as root and is granted the SYS_PTRACE capability. These settings should not be used in production environments.
securityContext:
capabilities:
add: ["SYS_PTRACE"]
See set capabilities for a container for more details.
Once the pod is running as root and has the SYS_PTRACE capability it will be able to debug the Flask app.
You can follow the same instructions as in docker compose. Enter the pod and install the required library and packages: gdb, netstat and debugpy.
Often in a Kubernetes environment nodes are not addressable from outside the cluster. VSCode will thus be unable to remotely connect to port 5678 on a Kubernetes node. In order to do this you need to create a tunnel that port forwards 5678 to your local machine.
kubectl port-forward pod/superset-<some random id> 5678:5678
You can now launch your VSCode debugger with the same config as above. VSCode will connect to 127.0.0.1:5678 which is forwarded by kubectl to your remote kubernetes POD.
See the dedicated Storybook documentation for information on running Storybook locally and adding new stories.
Superset uses Flask-Babel for internationalization.
Edit superset_config.py:
LANGUAGES = {
'en': {'flag': 'us', 'name': 'English'},
'fr': {'flag': 'fr', 'name': 'French'},
'zh': {'flag': 'cn', 'name': 'Chinese'},
}
# Initialize a new language
pybabel init -i superset/translations/messages.pot -d superset/translations -l de
# Extract Python strings
pybabel extract -F babel.cfg -o superset/translations/messages.pot -k lazy_gettext superset
# Extract JavaScript strings
npm run build-translation
# Update all language files with new strings
pybabel update -i superset/translations/messages.pot -d superset/translations
# Frontend
cd superset-frontend
npm run build-translation
# Backend
pybabel compile -d superset/translations
We use Ruff for Python linting and formatting:
# Auto-format using ruff
ruff format .
# Lint check with ruff
ruff check .
# Lint fix with ruff
ruff check --fix .
Pre-commit hooks run automatically on git commit if installed.
We use a hybrid linting approach combining OXC (Oxidation Compiler) for standard rules and a custom AST-based checker for Superset-specific patterns.
cd superset-frontend
# Run both OXC and custom rules
npm run lint:full
# Run OXC linter only (faster for most checks)
npm run lint
# Fix auto-fixable issues with OXC
npm run lint-fix
# Run custom rules checker only
npm run check:custom-rules
# Run tsc (typescript) checks
npm run type
# Format with Prettier
npm run prettier
The linting system consists of two components:
OXC Linter (oxlint) - A Rust-based linter that's 50-100x faster than ESLint
oxlint.jsonnpm run lint or npm run lint-fixCustom Rules Checker - A Node.js AST-based checker for Superset-specific patterns
npm run check:custom-rules"Plugin 'basic-custom-plugin' not found" Error
Ensure you're using the explicit config:
npx oxlint --config oxlint.json
Custom Rules Not Running
Verify the AST parsing dependencies are installed:
npm ls @babel/parser @babel/traverse glob
scripts/check-custom-rules.jsprocessFile()npm run check:custom-rulesFor every PR, an ephemeral environment is automatically deployed for testing.
Access pattern: https://pr-{PR_NUMBER}.superset.apache.org
Features:
# Rebuild specific service
docker compose build superset
# View logs
docker compose logs -f superset
# Execute commands in container
docker compose exec superset bash
# Reset database
docker compose down -v
docker compose up
Frontend: Webpack dev server provides hot module replacement automatically.
Backend: Use Flask debug mode:
FLASK_ENV=development superset run -p 8088 --with-threads --reload
For Python profiling:
# In superset_config.py
PROFILING = True
For React profiling:
# Create a new migration
superset db migrate -m "Description of changes"
# Apply migrations
superset db upgrade
# Downgrade
superset db downgrade
Add to your shell profile:
alias sdev='FLASK_ENV=development superset run -p 8088 --with-threads --reload'
alias stest='pytest tests/unit_tests'
alias slint='pre-commit run --all-files'
alias sfront='cd superset-frontend && npm run dev-server'
# Clear npm cache
npm cache clean --force
# Reinstall dependencies
rm -rf node_modules package-lock.json
npm install
# Recreate virtual environment
deactivate
rm -rf venv
python3 -m venv venv
source venv/bin/activate
pip install -r requirements/development.txt
pip install -e .
# Reset local database
superset db downgrade -r base
superset db upgrade
superset init
# Find process using port
lsof -i :8088
# Kill process
kill -9 [PID]
Please report security vulnerabilities to [email protected].
In the event a community member discovers a security flaw in Superset, it is important to follow the Apache Security Guidelines and release a fix as quickly as possible before public disclosure. Reporting security vulnerabilities through the usual GitHub Issues channel is not ideal as it will publicize the flaw before a fix can be applied.
It's possible to configure a local database to operate in async mode, to work on async related features.
To do this, you'll need to:
Add an additional database entry. We recommend you copy the connection string from the database labeled main, and then enable SQL Lab and the features you want to use. Don't forget to check the Async box
Configure a results backend, here's a local FileSystemCache example, not recommended for production, but perfect for testing (stores cache in /tmp)
from flask_caching.backends.filesystemcache import FileSystemCache
RESULTS_BACKEND = FileSystemCache('/tmp/sqllab')
Start up a celery worker
celery --app=superset.tasks.celery_app:app worker -O fair
Note that:
celery worker process for the changes to be reflected.sqlite database using the SQLAlchemy experimental broker. Ok for testing, but not recommended in productionIt's possible to configure database queries for charts to operate in async mode. This is especially useful for dashboards with many charts that may otherwise be affected by browser connection limits. To enable async queries for dashboards and Explore, the following dependencies are required:
CACHE_CONFIG and DATA_CACHE_CONFIG config settings