wf-manager startup

This commit is contained in:
Michele Artini 2023-09-26 10:36:26 +02:00
parent 6e40366619
commit 7185d038ee
4 changed files with 5 additions and 2 deletions

View File

@ -4,6 +4,7 @@ import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.DeleteMapping;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import eu.dnetlib.common.controller.DnetRestController;
@ -11,6 +12,7 @@ import eu.dnetlib.wfs.procs.ExecutionStatus;
import eu.dnetlib.wfs.service.WfExecutorService;
@RestController
@RequestMapping("/api/wfs")
public class WfExecutorRestController extends DnetRestController {
@Autowired

View File

@ -1,4 +1,4 @@
package eu.dnetlib.wfs.nodes;
package eu.dnetlib.wfs.nodes.launch;
import java.util.HashMap;
import java.util.UUID;
@ -10,6 +10,7 @@ import org.springframework.beans.factory.annotation.Autowired;
import eu.dnetlib.domain.wfs.WorkflowConfiguration;
import eu.dnetlib.wfs.annotations.WfInputParam;
import eu.dnetlib.wfs.annotations.WfNode;
import eu.dnetlib.wfs.nodes.ProcessNode;
import eu.dnetlib.wfs.procs.ExecutionStatus;
import eu.dnetlib.wfs.procs.ProcessAware;
import eu.dnetlib.wfs.procs.Token;

View File

@ -13,7 +13,7 @@ services:
- SPRING_DATASOURCE_USERNAME=${PG_USER}
- SPRING_DATASOURCE_PASSWORD=${PG_PASSWORD}
vovabulary-manager:
vocabulary-manager:
build: ./dnet-app/apps/dnet-vocabulary-manager
expose:
- ${SPRING_BOOT_PORT}