biff

Sigve 2025-09-18T06:20:03.111139Z

Is the biff starter avaliable as a git project? Would make it simpler to merge the changes into the datomic and datalevin starter projects

2025-09-18T10:42:44.602299Z

It's not set up as a standalone git project; it's only in the starter directory of the main biff repo. However you could use git diff/`git format-patch` to get just the changes from a set of commits that affected that directory and then apply them to the other starter projects. e.g. git diff v1.8.10 v1.9.0 -- starter | sed 's/starter\///g' > starter-changes.patch(replacing v1.8.10 with whatever biff version you have in the starter projects' deps.edn) and then git apply starter-changes.patch in the other repos.

Sigve 2025-09-22T09:12:06.364869Z

Thanks, updated the projects to 1.9.0 now 🙂

🙌 1