🎉 Create backend template using spring initializer
This commit is contained in:
parent
69af3f1e28
commit
3b7d4729a3
11 changed files with 458 additions and 18 deletions
|
@ -0,0 +1,13 @@
|
|||
package markl4yg.home_cert_assistant;
|
||||
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
|
||||
@SpringBootApplication
|
||||
public class HomeCertAssistantApplication {
|
||||
|
||||
public static void main(String[] args) {
|
||||
SpringApplication.run(HomeCertAssistantApplication.class, args);
|
||||
}
|
||||
|
||||
}
|
1
src/main/resources/application.properties
Normal file
1
src/main/resources/application.properties
Normal file
|
@ -0,0 +1 @@
|
|||
spring.application.name=home-cert-assistant
|
|
@ -0,0 +1,13 @@
|
|||
package markl4yg.home_cert_assistant;
|
||||
|
||||
import org.junit.jupiter.api.Test;
|
||||
import org.springframework.boot.test.context.SpringBootTest;
|
||||
|
||||
@SpringBootTest
|
||||
class HomeCertAssistantApplicationTests {
|
||||
|
||||
@Test
|
||||
void contextLoads() {
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue