Расписал какая настройка, что делает

This commit is contained in:
Данил 2024-08-04 14:24:09 +03:00
parent 74947f0409
commit 5b82defd78

View file

@ -1,33 +1,36 @@
database: # For more information, see the documentation
user: "DATABASE_USERNAME" # https://github.com/Redume/Kekkai/wiki
password: "DATABASE_PASSWORD"
host: "DATABASE_HOST" database: # Postgresql database data, for connection
name: "DATABASE_NAME" user: 'DATABASE_USERNAME'
password: 'DATABASE_PASSWORD'
host: 'DATABASE_HOST'
name: 'DATABASE_NAME'
port: 5432 port: 5432
server: server:
host: 'localhost' host: 'localhost'
private_key: '/CertSSL/private.key' private_key: '/CertSSL/private.key' # The path to the private SSL key file (String)
cert: '/CertSSL/fullchain.pem' cert: '/CertSSL/fullchain.pem' # The path to the SSL certificate (String)
ssl: true ssl: true # Enable or disable SSL support [Boolean]
debug: true debug: true # Enable or disable log [Boolean]
currency: currency:
chart: chart:
save_chart: false save_chart: false # Enable or disable saving graphs to an image (Boolean)
collecting: collecting:
fiat: True fiat: true # Turn off or turn on the collection of the fiat currency rate [Boolean]
crypto: False crypto: false # Turn off or turn on the collection of the cryptocurrency rate [Boolean]
schedule: '30 8 * * *' schedule: '30 8 * * *' # Currency collection schedule in crontab format [String]
fiat: fiat: # List of fiat currency to save the exchange rate [Array]
- USD - USD
- RUB - RUB
- EUR - EUR
- UAH - UAH
- TRY - TRY
- KZT - KZT
crypto: crypto: # List of cryptocurrency to save the exchange rate [Array]
- BTC - BTC
- ETH - ETH
coinapiKeys: coinapiKeys: # List of keys for the coinapi API [Array]
- CryptoKey1 - CryptoKey1
- CryptoKey2 - CryptoKey2
- CryptoKey3 - CryptoKey3