FeatureHub: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
Feature flag driven development is the software development technique that is based on conditional branching of your code (e.g. if-else statements) to allow to separate deployment from release of new features in production. The code can be incrementally shipped behind a feature flag and be "invisible" to the end user thus allowing deployments to production even if the feature is incomplete. The visibility of the feature (or release of the feature) to the end user is controlled by the feature flag state that can be simply turned on like a switch and doesn't require a deployment. | |||
docker run -p 8085:8085 --user 999:999 -v $HOME/party:/db featurehub/party-server:latest | docker run -p 8085:8085 --user 999:999 -v $HOME/party:/db featurehub/party-server:latest | ||
Latest revision as of 08:37, 6 August 2021
Feature flag driven development is the software development technique that is based on conditional branching of your code (e.g. if-else statements) to allow to separate deployment from release of new features in production. The code can be incrementally shipped behind a feature flag and be "invisible" to the end user thus allowing deployments to production even if the feature is incomplete. The visibility of the feature (or release of the feature) to the end user is controlled by the feature flag state that can be simply turned on like a switch and doesn't require a deployment.
docker run -p 8085:8085 --user 999:999 -v $HOME/party:/db featurehub/party-server:latest