-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapplication.sample.yml
42 lines (36 loc) · 1.09 KB
/
application.sample.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
#Email settings
spring.mail:
username: '[email protected]'
password: '******'
host: 'smtp.example.com'
port: 465
protocol: 'smtps'
#Email settings for gmail.com
#spring.mail:
# username: '[email protected]'
# password: '******'
# host: 'smtp.gmail.com'
# port: 587
# properties:
# mail.smtp.starttls.enable: true
###############################################################################
#Database connection
#spring.datasource:
# driver-class-name: 'org.h2.Driver'
# url: 'jdbc:h2:./database'
# username: 'sa'
# password: ''
###############################################################################
#Application settings
releases-stream:
#email message fields
mail-from: '[email protected]'
mail-subject: 'releases stream'
mail-to: '[email protected]'
#github personal access token
github-token: '******'
#github user to fetch starred repositories
github-user: 'johndoe'
#releases refresh cron string
#https://docs.spring.io/spring/docs/current/javadoc-api/org/springframework/scheduling/support/CronSequenceGenerator.html
refresh-cron: '0 0 */6 * * *'