-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathorganism.yml
56 lines (54 loc) · 1012 Bytes
/
organism.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
spring:
profiles:
active: development
application:
name: organism-ws
---
spring:
profiles: production
---
spring:
profiles: test
jpa:
hibernate:
ddl-auto: create-drop
show-sql: true
database: postgresql
generate-ddl: true
datasource:
url: ${JDBC_DATABASE_URL}
username: ${JDBC_DATABASE_USERNAME}
password: ${JDBC_DATABASE_PASSWORD}
platform: postgres
driver-class-name: org.postgresql.Driver
security:
user:
name: admin
password: password
eureka:
client:
serviceUrl:
defaultZone: https://admin:[email protected]/eureka
instance:
preferIpAddress: false
hostname: ${DOMAIN_NAME}
secure-port: 443
---
spring:
profiles: development
h2:
console:
enabled: true
path: /h2-console
jpa:
hibernate:
ddl-auto: create-drop
show-sql: true
datasource:
platform: h2
server:
use-forward-headers: true
security:
user:
name: admin
password: password