File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed
src/main/java/org/commonwl/view Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -44,5 +44,5 @@ RUN mvn clean package -DskipTests && cp target/cwlviewer-*.jar /usr/lib/cwlviewe
44
44
WORKDIR /tmp
45
45
46
46
EXPOSE 8080
47
-
47
+ ENV LC_ALL C.UTF-8
48
48
CMD ["/usr/bin/java" , "-jar" , "/usr/lib/cwlviewer.jar" ]
Original file line number Diff line number Diff line change @@ -90,6 +90,8 @@ $ mvn spring-boot:run
90
90
91
91
Alternatively, you can run the application from your IDE as a simple Java application by importing the Maven project.
92
92
93
+ You need to install [Graphviz](http://www.graphviz.org/) for all unit tests to pass.
94
+
93
95
You can create an executable JAR file by using :
94
96
95
97
mvn clean install
Original file line number Diff line number Diff line change @@ -68,6 +68,6 @@ public void configureContentNegotiation(ContentNegotiationConfigurer configurer)
68
68
69
69
@ Override
70
70
public void addCorsMappings (CorsRegistry registry ) {
71
- registry .addMapping ("/**" ); // .setMaxAge(Long.MAX_VALUE)
71
+ registry .addMapping ("/**" ). exposedHeaders ( "Location" ) ; // .setMaxAge(Long.MAX_VALUE)
72
72
}
73
73
}
You can’t perform that action at this time.
0 commit comments