commit 34811fd981c386a1f75341c98ac90176e935cb33 Author: ThisBirchWood Date: Mon May 5 18:46:03 2025 +0200 initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8a56759 --- /dev/null +++ b/.gitignore @@ -0,0 +1,34 @@ +node_modules +HELP.md +target/ +!.mvn/wrapper/maven-wrapper.jar +!**/src/main/**/target/ +!**/src/test/**/target/ + +### STS ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans +.sts4-cache + +### IntelliJ IDEA ### +.idea +*.iws +*.iml +*.ipr + +### NetBeans ### +/nbproject/private/ +/nbbuild/ +/dist/ +/nbdist/ +/.nb-gradle/ +build/ +!**/src/main/**/build/ +!**/src/test/**/build/ + +### VS Code ### +.vscode/ diff --git a/compose.yaml b/compose.yaml new file mode 100644 index 0000000..0baad47 --- /dev/null +++ b/compose.yaml @@ -0,0 +1 @@ +services: diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..4fc6cf6 --- /dev/null +++ b/pom.xml @@ -0,0 +1,141 @@ + + + 4.0.0 + + org.springframework.boot + spring-boot-starter-parent + 3.4.5 + + + com.ddf + vodSystem + 0.0.1-SNAPSHOT + vodSystem + vodSystem + + + + + + + + + + + + + + + 24 + 24.7.3 + + + + com.vaadin + vaadin-spring-boot-starter + + + + org.springframework.boot + spring-boot-devtools + runtime + true + + + org.springframework.boot + spring-boot-docker-compose + runtime + true + + + org.projectlombok + lombok + true + + + org.springframework.boot + spring-boot-starter-test + test + + + + + + com.vaadin + vaadin-bom + ${vaadin.version} + pom + import + + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + + + + org.projectlombok + lombok + + + + + + org.springframework.boot + spring-boot-maven-plugin + + + + org.projectlombok + lombok + + + + + + + + + + production + + + com.vaadin + vaadin-core + + + com.vaadin + vaadin-dev + + + + + + + + + com.vaadin + vaadin-maven-plugin + ${vaadin.version} + + + frontend + compile + + prepare-frontend + build-frontend + + + + + + + + + + diff --git a/src/main/java/com/ddf/vodsystem/VodSystemApplication.java b/src/main/java/com/ddf/vodsystem/VodSystemApplication.java new file mode 100644 index 0000000..f8c3ef9 --- /dev/null +++ b/src/main/java/com/ddf/vodsystem/VodSystemApplication.java @@ -0,0 +1,13 @@ +package com.ddf.vodsystem; + +import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.SpringBootApplication; + +@SpringBootApplication +public class VodSystemApplication { + + public static void main(String[] args) { + SpringApplication.run(VodSystemApplication.class, args); + } + +} diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties new file mode 100644 index 0000000..c4e1ab6 --- /dev/null +++ b/src/main/resources/application.properties @@ -0,0 +1,2 @@ +vaadin.launch-browser=true +spring.application.name=vodSystem diff --git a/src/test/java/com/ddf/vodsystem/VodSystemApplicationTests.java b/src/test/java/com/ddf/vodsystem/VodSystemApplicationTests.java new file mode 100644 index 0000000..9a9c1ba --- /dev/null +++ b/src/test/java/com/ddf/vodsystem/VodSystemApplicationTests.java @@ -0,0 +1,13 @@ +package com.ddf.vodsystem; + +import org.junit.jupiter.api.Test; +import org.springframework.boot.test.context.SpringBootTest; + +@SpringBootTest +class VodSystemApplicationTests { + + @Test + void contextLoads() { + } + +}