FeatureHub: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
(Created page with " docker run -p 8085:8085 --user 999:999 -v $HOME/party:/db featurehub/party-server:latest ==References== * [https://www.featurehub.io/ Feature Hub]")
 
No edit summary
 
(4 intermediate revisions 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


==References==
==References==
* [https://www.featurehub.io/ Feature Hub]
* [https://github.com/featurehub-io/featurehub-examples/tree/master/sample-java-springboot A FeatureHub SpringBoot Template]
* [https://docs.featurehub.io/ FeatureHub Documentation]
* [https://github.com/featurehub-io/featurehub-examples FeatureHub SDK Examples]
* [https://www.featurehub.io/ FeatureHub]

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

References