· 7 years ago · Aug 25, 2018, 03:36 AM
1hibernate:
2 dialect: org.hibernate.dialect.PostgreSQLDialect
3 packageId:
4 new_generator_mappings: true
5
6logging:
7 file: service.log
8 level:
9 root: INFO
10
11server:
12 port: 10000
13
14spring:
15 database:
16 driverClassName: org.postgresql.Driver
17 datasource:
18 username: _POSTGRES_USER_
19 password: _POSTGRES_PASS_
20 platform: postgres
21 url: jdbc:postgresql://_POSTGRES_HOST_:5432/_POSTGRES_DB_
22 profiles:
23 active: prod
24 jpa:
25 database: POSTGRESQL
26 hibernate:
27 ddl-auto: none
28 show-sql: false
29
30 http:
31 multipart:
32 max-file-size: 100MB
33 max-request-size: 100MB
34
35agriloka:
36 basepath: "_BASE_PATH_"
37 path:
38 breeder-app: "_BASE_PATH_"
39 investor-app: "_BASE_PATH_"
40 back-office-app: "_BASE_PATH_"
41 auth:
42 token-hashids-seed: "_TOKEN_"
43 storage:
44 base-url: "_ASSET_URL_"
45 base-path: "_ASSET_PATH_"
46 product-path: "/product"
47 identity-path: "/identity"
48 breeder-path: "/breeder"
49 fish-status-report-path: "/report"
50 income-report-path: "/income-report"
51 certificate-path: "/certificate"
52 midtrans:
53 rest-endpoint:
54 production: https://api.midtrans.com/v2
55 development: https://api.sandbox.midtrans.com/v2
56 type: DEVELOPMENT
57 merchant-id: merchantId
58 client-key: clientKey
59 server-key: serverKey
60 scheduler:
61 expired-investment-unit-checker:
62 execute-rate: 60000
63
64mandrill:
65 credentials:
66 api-key: _MANDRILL_API_KEY_
67
68email:
69 properties:
70 from-email: no-reply@agriloka.com
71 from-name: Agriloka
72 path-domain: agriloka.com
73
74nexmo-sms:
75 url:
76 url: https://rest.nexmo.com/sms/json
77 credentials:
78 api-key: _NEXMO_API_KEY_
79 secret-key: _NEXMO_SECRET_KEY_