30 lines
477 B
YAML
30 lines
477 B
YAML
spring:
|
|
application:
|
|
name: ServerMonitorBot
|
|
datasource:
|
|
url: @database.url@
|
|
username: @database.username@
|
|
password: @database.password@
|
|
jpa:
|
|
hibernate:
|
|
ddl-auto: none
|
|
flyway:
|
|
locations: classpath:db/migration
|
|
bot:
|
|
name: "ServerMonitorBot"
|
|
token: "token"
|
|
users:
|
|
- telegramId: 123456789
|
|
role: admin
|
|
ssh:
|
|
servers:
|
|
-
|
|
name: "Server Name"
|
|
host: "url"
|
|
port: 22
|
|
user: "user"
|
|
password: "pass"
|
|
|
|
|
|
|