GitHub user dosubot[bot] added a comment to the discussion: Multi-Tenant User management
<!-- Answer --> This happens because the Superset git repository intentionally excludes built frontend assets, generated files, and large dependencies (like superset/static/assets, superset-frontend/build, node_modules, translation files, etc.) via its .gitignore. When you clone and check out a tag, you only get the raw source code, not the production-ready assets or translations needed to run Superset out of the box. Official release tarballs and PyPI packages include these built files because the release process runs all build steps before packaging ([.gitignore](https://github.com/apache/superset/blob/308007f909b5a3c1cdd6fc5632ef27ca7eb97ce0/.gitignore), [release docs](https://github.com/apache/superset/blob/308007f909b5a3c1cdd6fc5632ef27ca7eb97ce0/RELEASING/README.md)). If you want a working Superset from git, after checkout you need to run the frontend and translation build steps (npm/yarn build in superset-frontend, translation scripts, etc.) as described in the development/installation docs. If you want all files prebuilt, use the official release tarball or PyPI package instead. Also, avoid using git clone --depth=1 if you want to check out tags—shallow clones can miss tags and files ([discussion](https://github.com/apache/superset/issues/33027)). <!-- Dosu Comment Footer --> *To reply, just mention [@dosu](https://go.dosu.dev/dosubot).* --- <sup>How did I do? [Good](https://app.dosu.dev/response-feedback/f7e7a7c7-3332-41d7-8124-18a3341801ce?feedback_type=great_response) | [Irrelevant](https://app.dosu.dev/response-feedback/f7e7a7c7-3332-41d7-8124-18a3341801ce?feedback_type=irrelevant_answer) | [Incorrect](https://app.dosu.dev/response-feedback/f7e7a7c7-3332-41d7-8124-18a3341801ce?feedback_type=incorrect_sources) | [Verbose](https://app.dosu.dev/response-feedback/f7e7a7c7-3332-41d7-8124-18a3341801ce?feedback_type=too_verbose) | [Hallucination](https://app.dosu.dev/response-feedback/f7e7a7c7-3332-41d7-8124-18a3341801ce?feedback_type=hallucination) | [Report 🐛](https://app.dosu.dev/response-feedback/f7e7a7c7-3332-41d7-8124-18a3341801ce?feedback_type=bug_report) | [Other](https://app.dosu.dev/response-feedback/f7e7a7c7-3332-41d7-8124-18a3341801ce?feedback_type=other)</sup> [](https://go.dosu.dev/discord-bot) [](https://twitter.com/intent/tweet?text=%40dosu_ai%20helped%20me%20solve%20this%20issue!&url=https%3A//github.com/apache/superset/discussions/33877) GitHub link: https://github.com/apache/superset/discussions/33877#discussioncomment-13639150 ---- This is an automatically sent email for [email protected]. To unsubscribe, please send an email to: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
