Projekt

Obecné

Profil

Stáhnout (903 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1
server.servlet.context-path=/api
2

    
3
spring.datasource.url=${JDBC_URL}
4
spring.datasource.username=${JDBC_USERNAME}
5
spring.datasource.password=${JDBC_PASSWORD}
6
spring.datasource.driver-class-name=${JDBC_DRIVER}
7

    
8
server.use-forward-headers=true
9

    
10
#populate these from your google oauth2 setup
11
#https://www.baeldung.com/spring-security-5-oauth2-login
12
spring.security.oauth2.client.registration.google.client-id=${OAUTH2_GOOGLE_CLIENT_ID}
13
spring.security.oauth2.client.registration.google.client-secret=${OAUTH2_GOOGLE_CLIENT_SECRET}
14

    
15
spring.flyway.baseline-on-migrate=true
16
spring.flyway.baseline-version=1.0.0
17
spring.flyway.baseline-description=init
18

    
19
#comma-separated list of allowed domains, leave empty for all
20
ymanager.oauth2.client.google.allowed-domains=${OAUTH2_GOOGLE_ALLOWED_DOMAINS}
21

    
22
#comma-separated list of allowed origins, use asterisk for all
23
ymanager.cors.allowed-origins=${CORS_ALLOWED_ORIGINS}
(3-3/4)