Hello everyone,
I’m writing to ask for advice. After weeks of building a fairly complex, feature-rich CRM for my non-profit on Vercel, I’m generally happy with the results—despite the occasional inefficiency (some commands not executing as expected, a few well-known negative loops). I accept these as part of the tech’s maturation.
What I find hardest to adopt—and ultimately most unsatisfying—is the wait time imposed every time I trigger an action. I often have a backlog of tasks I’d like to run in parallel, across different areas of the site that don’t interfere with each other, but I end up processing and sending them strictly one after the other. On the other hand, this mirrors the logic of a development team: one developer focuses on one area of the software, another developer works on a different area of the same software. I’d like to be able to do the same. For example, if on one side I have ongoing work on bug fixing and fine-tuning small features, on the other side I want to move forward with implementing new features—essentially running a separate “construction site.”
How can I achieve this kind of parallel development workflow in Vercel?