Add HomeController and initial application setup with routing

This commit is contained in:
2025-10-10 11:50:10 +02:00
parent 96b48d77a0
commit d822d11acc
13 changed files with 17 additions and 8 deletions

View File

@@ -0,0 +1,10 @@
# Routes
# This file defines all application routes (Higher priority routes first)
# https://www.playframework.com/documentation/latest/ScalaRouting
# ~~~~
# An example controller showing a sample home page
GET / controllers.HomeController.index()
# Map static resources from the /public folder to the /assets URL path
GET /assets/*file controllers.Assets.versioned(path="/public", file: Asset)