2024-08-04 14:24:09 +03:00
|
|
|
# For more information, see the documentation
|
|
|
|
# https://github.com/Redume/Kekkai/wiki
|
|
|
|
|
|
|
|
database: # Postgresql database data, for connection
|
|
|
|
user: 'DATABASE_USERNAME'
|
|
|
|
password: 'DATABASE_PASSWORD'
|
|
|
|
host: 'DATABASE_HOST'
|
|
|
|
name: 'DATABASE_NAME'
|
2024-02-15 10:51:09 +03:00
|
|
|
port: 5432
|
2024-03-14 12:36:35 +03:00
|
|
|
server:
|
2024-08-02 21:48:32 +03:00
|
|
|
host: 'localhost'
|
2024-08-04 14:24:09 +03:00
|
|
|
private_key: '/CertSSL/private.key' # The path to the private SSL key file (String)
|
|
|
|
cert: '/CertSSL/fullchain.pem' # The path to the SSL certificate (String)
|
|
|
|
ssl: true # Enable or disable SSL support [Boolean]
|
|
|
|
debug: true # Enable or disable log [Boolean]
|
2024-02-15 10:51:09 +03:00
|
|
|
currency:
|
2024-08-04 13:31:32 +03:00
|
|
|
chart:
|
2024-08-04 14:24:09 +03:00
|
|
|
save_chart: false # Enable or disable saving graphs to an image (Boolean)
|
2024-06-24 22:32:11 +03:00
|
|
|
collecting:
|
2024-08-04 14:24:09 +03:00
|
|
|
fiat: true # Turn off or turn on the collection of the fiat currency rate [Boolean]
|
|
|
|
crypto: false # Turn off or turn on the collection of the cryptocurrency rate [Boolean]
|
|
|
|
schedule: '30 8 * * *' # Currency collection schedule in crontab format [String]
|
|
|
|
fiat: # List of fiat currency to save the exchange rate [Array]
|
2024-06-24 22:32:11 +03:00
|
|
|
- USD
|
|
|
|
- RUB
|
|
|
|
- EUR
|
|
|
|
- UAH
|
|
|
|
- TRY
|
|
|
|
- KZT
|
2024-08-04 14:24:09 +03:00
|
|
|
crypto: # List of cryptocurrency to save the exchange rate [Array]
|
2024-06-24 22:32:11 +03:00
|
|
|
- BTC
|
|
|
|
- ETH
|
2024-08-04 14:24:09 +03:00
|
|
|
coinapiKeys: # List of keys for the coinapi API [Array]
|
2024-08-01 00:43:34 +03:00
|
|
|
- CryptoKey1
|
|
|
|
- CryptoKey2
|
2024-08-01 23:55:51 +03:00
|
|
|
- CryptoKey3
|