How to set up a staging environment on Google App Engine

前端 未结 5 967
星月不相逢
星月不相逢 2020-12-04 08:45

Having properly configured a Development server and a Production server, I would like to set up a Staging environment on Google App Engine useful

5条回答
  •  南方客
    南方客 (楼主)
    2020-12-04 09:22

    If separate datastore is required, option B looks cleaner solution for me because:

    1. You can keep versions feature for real versioning of production applications.
    2. You can keep versions feature for traffic splitting.
    3. You can keep namespaces feature for multi-tenancy.
    4. You can easily copy entities from one app to another. It's not so easy between namespaces.
    5. Few APIs still don't support namespaces.
    6. For teams with multiple developers, you can grant upload to production permission for a single person.

提交回复
热议问题