I have two separate apps both using the same frameworks (node, vite, tailwind, mongo etc) and both in a monorepo.
One of the apps has 15 different tools and calculators. I’d like to essentially merge those features into the other app so that they are identical and then import data from the mongo collection so that users can access their tools and calculators on the app where we are merging into.
I say “merge” as I want them to be identical but I assume it’ll be easier to just have cursor rebuild the apps then to actually try and merge things.
What’s the best way of doing this? I’d like the database model to be the same as well as the UI.
Should I just copy all of the files to the working app and tell cursor to create versions functionally identical? Is there a better way of doing this?
Thanks