There’s no indication of how to configure the render.yml file, anyone here able to give any guidance on what to add if I want to add a production, staging and dev environments to the render.yaml that comes with the starter?
Also note to the documentation owners for that linked page to add that information there for future me and other users
If you’d like to set up a staging environment on Render, you can update the render.yaml file at the root of your repository and add staging resources that are similar to your production resources. You might want to change the name field to something like strapi-staging and the NODE_ENV environment variable to staging . You might also want to use less expensive service and database plans in staging
In short, the staging environment should as close to production as possible. Therefore you can duplicate all contents in render.yaml and add a different name like strapi-staging. When you deploy with this YAML, Render will create both production and staging strapi server and database.
Another option is using 2 YAML files, one for production and one for staging. These 2 files can be identical except name fields.
Actual examples to follow would be really helpful so there’s no confusion, because from whay you’re saying I have no idea what to call the second yaml file if I were to have one for dev and prod, how would Render know what file was what?