def getStage()

in app/wiring/AppComponents.scala [72:80]


  def getStage(config: Config): Stage = {
    val stage = config.getString("stage") match {
      case "DEV" => CODE
      case "CODE" => CODE
      case "PROD" => PROD
    }
    logger.info(s"Stage: $stage")
    stage
  }