DEV Community

Discussion on: 5 Things to consider when deploying a new major feature to production

Collapse
 
sqlrob profile image
Robert Myers

For the condition, make sure that it is something that doesn't require a deploy. At my job we use feature toggles that require a build, and I've lost count of how many times I've forgotten to enable it before deploying to a test server.

Collapse
 
geshan profile image
Geshan Manandhar

You can use launchdarkly.com for feature toggle as a service. Good thought @robert .