Generated project

This commit is contained in:
start.vaadin.com
2024-05-27 21:00:34 +00:00
commit 7e577093a5
26 changed files with 2109 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
package dev.mars3142.fhq;
import com.vaadin.flow.component.page.AppShellConfigurator;
import com.vaadin.flow.theme.Theme;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
/**
* The entry point of the Spring Boot application.
*
* Use the @PWA annotation make the application installable on phones, tablets
* and some desktop browsers.
*
*/
@SpringBootApplication
@Theme(value = "website")
public class Application implements AppShellConfigurator {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}