micronaut:
   environment: test
   http:
      client:
         read-timeout: 3600s
   security.token.jwt.signatures.secret.generator.secret: kdfjadkdjfioeijfow39302jfojsojf0jdkd9fj
postgres: # postgres reactive client is configured for use by reactive parts of the system such as authentication
   reactive:
      client:
         port: 7432
         host: localhost
         database: cynergitestdb
         user: postgres
         password: password
         maxSize: 1
datasources:
   default:
      url: "jdbc:postgresql://${postgres.reactive.client.host}:${postgres.reactive.client.port}/${postgres.reactive.client.database}"
      username: "${postgres.reactive.client.user}"
      password: "${postgres.reactive.client.password}"
      maximumPoolSize: 1
flyway:
   datasources:
      default:
         clean-on-validation-error: true
         clean-disabled: false
cynergi:
   security:
      jwt:
         pem:
            path: "classpath:security/local-dev.pem" #openssl genrsa -out security/local-dev.pem 2048
   legacy:
      import:
         location: "./importEmpty/"
         rename: true
         process-startup: false
