Add initial application structure with HomeController and routing

This commit is contained in:
2025-10-09 13:25:05 +02:00
parent 2a55b3e0f9
commit 44e2575a66
19 changed files with 46 additions and 195 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)