diff options
Diffstat (limited to 'portal-BE/src/main')
-rw-r--r-- | portal-BE/src/main/java/org/onap/portal/PortalApplication.java | 13 | ||||
-rw-r--r-- | portal-BE/src/main/resources/application.properties | 1 |
2 files changed, 14 insertions, 0 deletions
diff --git a/portal-BE/src/main/java/org/onap/portal/PortalApplication.java b/portal-BE/src/main/java/org/onap/portal/PortalApplication.java new file mode 100644 index 00000000..4a7f4f85 --- /dev/null +++ b/portal-BE/src/main/java/org/onap/portal/PortalApplication.java @@ -0,0 +1,13 @@ +package org.onap.portal; + +import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.SpringBootApplication; + +@SpringBootApplication +public class PortalApplication { + + public static void main(String[] args) { + SpringApplication.run(PortalApplication.class, args); + } + +} diff --git a/portal-BE/src/main/resources/application.properties b/portal-BE/src/main/resources/application.properties new file mode 100644 index 00000000..8b137891 --- /dev/null +++ b/portal-BE/src/main/resources/application.properties @@ -0,0 +1 @@ + |