Deployment and lifecycle management for Nix
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

dev: fix exsync loading worktrees

+9 -2
+1
.gitignore
··· 49 49 cmd/sower-activator/sower-activator 50 50 .direnv 51 51 .workspaces/ 52 + .worktrees/ 52 53 .gocache/
+1 -1
AGENTS.md
··· 8 8 - Ensure backwards compatibility or migration paths for changes that affect contracts between components (e.g. agent/server), but otherwise assume breaking changes are ok. 9 9 - Never break deployments or strand agents such that they cannot apply an upgrade. 10 10 - You can access the dev server live over tidewave project_eval, allowing for introspection of a live environment. 11 - - Do not create worktrees unless explicitly asked. When asked, use: `git worktree add .claude/worktrees/<name> -b <name>` 11 + - Do not create worktrees unless explicitly asked. When asked, use: `git worktree add .worktrees/<name> -b <name>` 12 12 13 13 ## Worktree setup 14 14
+7 -1
config/dev.exs
··· 68 68 # Initialize plugs at runtime for faster development compilation 69 69 config :phoenix, :plug_init_mode, :runtime 70 70 71 - config :exsync, logging_enabled: false, exclusions: [~r/\.expert/] 71 + config :exsync, 72 + logging_enabled: false, 73 + exclusions: [ 74 + ~r|\.expert|, 75 + ~r|\.workspaces|, 76 + ~r|\.worktrees| 77 + ]