You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+10-20Lines changed: 10 additions & 20 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
# CWL Viewer
2
2
3
-
This is a work-in-progress [Spring Boot](http://projects.spring.io/spring-boot/) MVC application which fetches [Common Workflow Language](http://www.commonwl.org/) files from a Github repository and creates a page for it detailing the main workflow and its inputs, outputs and steps.
3
+
This is a [Spring Boot](http://projects.spring.io/spring-boot/) MVC application which fetches [Common Workflow Language](http://www.commonwl.org/) files from a Github repository and creates a page for it detailing the main workflow and its inputs, outputs and steps.
@@ -117,17 +107,17 @@ There are a variety of configuration options detailed in the [application config
117
107
When deploying with docker, these can be overriden externally by creating/modifying `docker-compose.override.yml` as follows:
118
108
119
109
```yaml
120
-
version: '2'
110
+
version: '3.2'
121
111
services:
122
112
spring:
123
113
environment:
124
-
githubAPI.authentication: oauth
125
-
githubAPI.oauthToken: abcdefghhijklmnopqrstuvwxyz
114
+
applicationName: Common Workflow Language Viewer
115
+
applicationURL: https://view.commonwl.org
116
+
cacheDays: 1
126
117
```
127
118
128
119
The properties can alternatively be provided as system properties on the
129
-
command line, e.g. `-DgithubAPI.authentication=oauth`
130
-
`-DgithubAPI.oauthToken=abcdefghhijklmnopqrstuvwxyz`or via a [variety of other methods supported by Spring Boot](https://docs.spring.io/spring-boot/docs/current/reference/html/boot-features-external-config.html)
120
+
command line, e.g. `-DcacheDays=1` or via a [variety of other methods supported by Spring Boot](https://docs.spring.io/spring-boot/docs/current/reference/html/boot-features-external-config.html)
0 commit comments