Test directories excluded from version control
Three development directories—Superset, Conductor, and .n8n—are now automatically excluded from version control, preventing accidental commits of test artifacts.
Local testing artifacts can now live in the repository without risk of being committed. Three directories—.superset, .conductor, and .n8n—are now listed in .gitignore, so developers can run local tests or spin up temporary instances without cluttering the commit history. The .n8n exclusion specifically targets worktree root testing scenarios, where n8n configuration might be created alongside the main codebase. This is a quiet quality-of-life fix that removes one more thing developers need to remember.
View Original GitHub Description
Exclude Superset and Conductor folders, also exclude .n8n in case it's created inside the worktree root for testing.