Add bundled Docker deployment

This commit is contained in:
2026-05-21 16:38:30 +02:00
parent 1b420271c7
commit d1d7cf5265
6 changed files with 112 additions and 0 deletions
@@ -0,0 +1,12 @@
package com.example.app.common;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
@Controller
public class SpaForwardController {
@GetMapping({"/weekly", "/monthly", "/projects"})
public String forwardToIndex() {
return "forward:/index.html";
}
}