Compare commits

...

4 commits

Author SHA1 Message Date
hirst b3ce033bcf Merge pull request 'cant test locally' (#13) from worky into dev
All checks were successful
build and publish docker image / deploy / build (push) Successful in 2m10s
Reviewed-on: #13
Reviewed-by: Seiwy <bmate20050911@gmail.com>
2024-06-05 08:51:05 +02:00
hirst 5de3ab0a8f updated OpenAPIConfiguration.java
All checks were successful
build and publish docker image / deploy / build (pull_request) Successful in 1m57s
2024-06-05 08:46:12 +02:00
hirst e56f4c751f Merge remote-tracking branch 'origin/dev' into dev 2024-06-05 08:45:11 +02:00
hirst 4288896418 Merge remote-tracking branch 'origin/dev' into dev 2024-06-05 08:17:18 +02:00

View file

@ -3,17 +3,26 @@ package com.learningpulse.gateway.config;
import io.swagger.v3.oas.models.OpenAPI;
import io.swagger.v3.oas.models.info.Contact;
import io.swagger.v3.oas.models.info.Info;
import io.swagger.v3.oas.models.servers.Server;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.stereotype.Component;
import java.util.List;
@Component
@Configuration
public class OpenAPIConfiguration {
@Bean
public OpenAPI gatewayOpenAPI() {
return new OpenAPI().info(new Info()
return new OpenAPI()
.servers(
List.of(
new Server().url("https://lpdev.4o1x5.dev").description("Development server")
)
)
.info(new Info()
.title("Learning Pulse API documentation")
.version("0.0.1")
.description("This is the API documentation for the Learning Pulse project.")