Is there any option for having a development environment or a dev branch that we can create branches from and merge back into?
Andreas Møller
1 year ago
Every branch is their own dev environment, but you can only branch off of main
Andreas Møller
1 year ago
This is becoming best practice in the code world as well. We use “feature flags” in toddle, which is essentially just a formula that toggles a new feature on/ off for specific users
That way we can push frequently but still control when and to whom new features are made available