mirror of
https://github.com/PaulReichmuth/timekeep-backend.git
synced 2025-12-22 22:41:59 +00:00
add core spring application from spring initializr
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
package de.pnreichmuth.timekeep_backend;
|
||||
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
|
||||
@SpringBootApplication
|
||||
public class TimekeepBackendApplication {
|
||||
|
||||
static void main(String[] args) {
|
||||
SpringApplication.run(TimekeepBackendApplication.class, args);
|
||||
}
|
||||
|
||||
}
|
||||
1
src/main/resources/application.properties
Normal file
1
src/main/resources/application.properties
Normal file
@@ -0,0 +1 @@
|
||||
spring.application.name=timekeep-backend
|
||||
Reference in New Issue
Block a user