Skip to content

Latest commit

 

History

History
10 lines (5 loc) · 860 Bytes

CONTRIBUTING.md

File metadata and controls

10 lines (5 loc) · 860 Bytes

Contributing

All you need is a computer with Go installed, and a Replicatd account to test with.

Design

Replicated apps can be "platform" or "ship". Avoid deep-in-the-callstack checks for app type. There's a common "Client" class that should handle the switch on appType, and call the appropriate implementation. We would like to avoid having this switch get lower in the call stack.

Sometimes, the two different app types require different parametes (promote release is an example, one takes "required" and one doesn't). Don't normalize these to the lowest common denominator. The goal of this CLI is to provide all functionality, with minimal internal knowledge to manage Replicated apps. The app schemas will continue to be a little different, this CLI should mask these differences while still providing access to all features of both appTypes.