Template and Helper for quick use
usage example:
Example usage:
from logTemplate import make_logger
logger = make_logger.init_logger(logging_config_path, logger_name)Will contain a feature flag helper for quick use for general use feature flags to set within the code and not in the environment TODO: set the feature flags into the environment`
Example usage:
from featureFlags import dev_cycle
dev_cycle_flag = dev_cycle.DevStatus.DEVELOPMENTDevStatus feature flags are:
- DEVELOPMENT: during development
- TESTING: during testing
- PRODUCTION: during production