private def fileConfig()

in app/lib/Config.scala [73:77]


  private def fileConfig(filePath: String) = {
    val file = new File(filePath)
    if (file.exists) ConfigFactory.parseFile(file)
    else ConfigFactory.empty()
  }