33 lines
1.1 KiB
Java
33 lines
1.1 KiB
Java
package net.gepafin.tendermanagement;
|
|
|
|
import org.springframework.boot.SpringApplication;
|
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
|
import org.springframework.cloud.openfeign.EnableFeignClients;
|
|
import org.springframework.context.annotation.Configuration;
|
|
import org.springframework.scheduling.annotation.EnableScheduling;
|
|
import org.springframework.web.servlet.config.annotation.CorsRegistry;
|
|
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
|
|
|
|
@EnableScheduling
|
|
@EnableFeignClients
|
|
@SpringBootApplication
|
|
public class TendermanagementApplication {
|
|
|
|
public static void main(String[] args) {
|
|
SpringApplication.run(TendermanagementApplication.class, args);
|
|
System.out.println("Spring Boot started");
|
|
}
|
|
|
|
@Configuration
|
|
public class CorsConfig implements WebMvcConfigurer {
|
|
|
|
@Override
|
|
public void addCorsMappings(CorsRegistry registry) {
|
|
registry.addMapping("/**").allowedOrigins("http://localhost:3000", "http://127.0.0.1:5500", "https://bandi-staging.memento.credit", "https://bandi.gepafin.it")
|
|
.allowedMethods("GET", "POST", "PUT", "DELETE", "OPTIONS", "HEAD").allowCredentials(true);
|
|
}
|
|
}
|
|
|
|
}
|
|
|