Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions conductor.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"scripts": {
"setup": "ln -sf ~/repos/bazzalabs/ui/apps/web/.env.local apps/web/.env.local && bun install",
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hardcoded user-specific path breaks team portability

Medium Severity

The setup script uses a hardcoded absolute path ~/repos/bazzalabs/ui/apps/web/.env.local which assumes a specific directory structure on the developer's machine. This path will fail for any teammate whose repository is cloned to a different location (e.g., ~/code/, ~/projects/, or any other directory). Since conductor.json is committed to the repository and intended for team-wide workspace setup, this makes the configuration non-portable and will cause the symlink command to fail for most users.

Fix in Cursor Fix in Web

"run": "bun run dev --filter web"
}
}
Loading