First Commit
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
package be.gyu.urlShortener;
|
||||
|
||||
import org.springframework.boot.SpringApplication;
|
||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||
|
||||
@SpringBootApplication
|
||||
public class UrlShortenerApplication {
|
||||
|
||||
public static void main(String[] args) {
|
||||
SpringApplication.run(UrlShortenerApplication.class, args);
|
||||
}
|
||||
|
||||
}
|
||||
3
src/main/resources/application.properties
Normal file
3
src/main/resources/application.properties
Normal file
@@ -0,0 +1,3 @@
|
||||
spring.application.name=urlShortener
|
||||
|
||||
server.port=10010
|
||||
Reference in New Issue
Block a user