Switch to unified view

a b/src/main/resources/application.yml
1
server:
2
  port: 8080
3
  servlet:
4
    context-path: /api
5
6
spring:
7
  servlet:
8
    multipart:
9
      enabled: true
10
      max-file-size: 50MB
11
      max-request-size: 50MB
12
  web:
13
    cors:
14
      allowed-origins: "*"
15
      allowed-methods: GET,POST,PUT,DELETE,OPTIONS
16
      allowed-headers: "*"
17
      allow-credentials: true
18
      max-age: 3600
19
20
logging:
21
  level:
22
    root: INFO
23
    DNAnalyzer: DEBUG
24
    org.springframework.web: DEBUG
25
26
analysis:
27
  temp-dir: ${java.io.tmpdir}/dnanalyzer
28
  max-sequence-length: 10000000