Pricing Blog

Separate Dev/Prod environments?

  • elibeachy-1183128220594339840

    elibeachy

    1 year ago

    Is there any option for having a development environment or a dev branch that we can create branches from and merge back into?
  • andreasmoller-1183139124060901447

    Andreas Møller

    1 year ago

    Every branch is their own dev environment, but you can only branch off of main
  • andreasmoller-1183139714031702067

    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
    🙌1