-
Notifications
You must be signed in to change notification settings - Fork 1
/
application.yml
59 lines (54 loc) · 1.66 KB
/
application.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
57
58
59
server:
port: 8080
spring:
application:
name: yaak-api
profiles:
active: sandbox
output:
ansi:
enabled: always
security:
oauth2:
# Only required for yaak.security.type=OAUTH
# resourceserver:
# jwt:
# Note the trailing slash is important!
# issuer-uri: https://oauth-priovider.com/
client:
registration:
user-app-client:
provider: oauth-provider
client-id: client_id
client-secret: client_secret
authorization-grant-type: password
# scope: message.read,message.write
username: username
password: password
provider:
oauth-provider:
token-uri: https://your-oauth-provider.com/oauth/token
logging:
level:
sun.net: INFO
org.springframework.web: INFO
com.dietmap: DEBUG
yaak:
security:
# Possible values: API_KEY, OAUTH, NONE
type: API_KEY
api-key: MyApiKey123
user-app:
subscription-webhook-url: http://localhost:8086/user-subscription/notifications/yaak
subscription-check-url: http://localhost:8086/user-subscription
google-play:
enabled: false
# Base64 encoded google service account api key allowing access to the Google Play Developer Publishing API and PubSub app subscriptions topic on behalf of the application
service-account-api-key-base64: e30K
service-account-email: account@account.iam.gserviceaccount.com
application-name: "App name in Google Play"
app-store:
enabled: true
production-url: https://buy.itunes.apple.com
sandbox-url: https://sandbox.itunes.apple.com
password: MyPassword123