setup

Solid

Make a repository Superset-ready by authoring .superset/config.json with setup, teardown, and run scripts so every new workspace boots configured, then verifying with a real workspace. Use when the user wants to set up a project or repo for Superset, configure workspace setup scripts, or fix a failing workspace setup ("new workspaces don't have node_modules", "my .env is missing in workspaces", "setup script isn't running").

Code & Development 14,079 stars 1259 forks Updated today NOASSERTION

Install

View on GitHub

Quality Score: 84/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
87
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Superset Project Setup Goal: every new workspace (isolated git worktree) for this repo comes up ready, with dependencies installed, env present, and services reachable, without manual steps. ## 1. Inspect the repo Work out what a fresh worktree needs, and ask about anything ambiguous: - Package manager and install command (lockfiles decide: bun/pnpm/yarn/npm, cargo, uv, ...) - Env files: `.env` is usually gitignored, so new worktrees need it copied from the main checkout or generated from `.env.example` - Services (docker-compose, databases) and dev command + ports - Monorepo layout (does setup need a `cwd`?) ## 2. Author `.superset/config.json` This file is what wires lifecycle scripts in; a bare `setup.sh` without `config.json` is not picked up. Schema: ```json { "setup": ["./.superset/setup.sh"], "teardown": ["./.superset/teardown.sh"], "run": ["bun dev"], "cwd": "optional/subdir" } ``` Each key is an array of shell commands run inside the worktree on workspace create / delete / run. Guidelines: - Setup must be idempotent and fast (aim for under a minute; slow steps make every workspace creation painful) - Copy secrets/env from the main checkout at setup time, never commit them - `.superset/config.local.json` (gitignored) lets an individual user extend scripts with `before`/`after` arrays without touching the shared config Show the user the proposed files and get explicit approval before writing. ## 3. Verify for real Create a throwaway workspace with...

Details

Author
superset-sh
Repository
superset-sh/superset
Created
10 months ago
Last Updated
today
Language
TypeScript
License
NOASSERTION

Bundled in these plugins

Similar Skills

Semantically similar based on skill content — not just same category