Commit 5cabd59a authored by aray's avatar aray

initial commit by admin

parent a85e0177
package com.altimetrik;
import lombok.extern.slf4j.Slf4j;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
@Slf4j
public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
log.info("PlaygroundCandidateDemo app has been started successfully ...");
}
}
......@@ -10,7 +10,7 @@ spring:
# HTTP Server
server:
port: 1099 # HTTP (Tomcat) port
servlet.contextPath: /v1
servlet.contextPath: /
undertow:
accesslog:
enabled: true
......
......@@ -6,8 +6,5 @@ import org.springframework.boot.test.context.SpringBootTest;
@SpringBootTest
class ApplicationTests {
@Test
void contextLoads() {
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment