Monorepos
Overview
Superset works with monorepos. Workspaces are created at the repo root with access to all packages.
Setup Script
{
"setup": [
"bun install",
"cp \"$SUPERSET_ROOT_PATH/.env\" .env"
]
}Running Services
Run multiple services from terminal:
bun run dev # All services
bun run --filter @myapp/web dev & # Specific package
bun run --filter @myapp/api devGit Submodules
Add to setup script:
{
"setup": ["git submodule update --init --recursive", "bun install"]
}