in app/lib/Config.scala [55:60]
def key(fileName: String) = {
val now = Calendar.getInstance().getTime
val dateFormat = new SimpleDateFormat("yyyy/MM/dd")
val getCurrentDate = dateFormat.format(now)
s"$getCurrentDate/${fileName.replace(' ', '_')}"
}