I’m working on a graph deployment onto LangGraph Platform. We have a dev version running and now want to set up a separate prod deployment. It seems like the default way to have multiple deployments is to set up two branches in the Github repo. I don’t like the pattern of having a dev branch because it blocks hot fixes and generally can accumulate changes that aren’t in prod unless the engineering team is disciplined about moving changes through the dev branch quickly.
Has anyone tried other methods to have a dev and prod deployment on LGP? Another option I can think of is to use Github actions against the LGP API to create temporary deployments for each feature branch and then clean up the deployment, tracing project, etc when the feature branch is merged to main.