bazzar/tests/bazzar.toml

65 lines
1.6 KiB
TOML
Raw Permalink Normal View History

2022-11-14 20:32:28 +01:00
[payment]
payu_client_id = 'Create payu account and copy here client_id'
payu_client_secret = 'Create payu account and copy here client_secret'
payu_client_merchant_id = 0
optional_payment = true
[web]
host = 'https://your.comain.com'
2023-06-20 07:03:15 +02:00
pass_salt = 'Generate it with myco generate-hash'
2022-11-14 20:32:28 +01:00
session_secret = '100 characters long random string'
jwt_secret = '100 characters long random string'
bind = '0.0.0.0'
port = 8080
signature = 'John Doe'
2023-06-20 07:03:15 +02:00
service_name = 'myco'
2022-11-14 20:32:28 +01:00
[mail]
sendgrid_secret = 'Create sendgrid account and copy credentials here'
sendgrid_api_key = 'Create sendgrid account and copy credentials here'
smtp_from = 'Valid sendgrid authorized email address. Example: contact@example.com'
[database]
2023-06-20 07:03:15 +02:00
url = 'postgres://postgres@localhost/myco'
2022-11-14 20:32:28 +01:00
[search]
sonic_search_addr = '[::1]:1491'
sonic_search_pass = 'SecretPassword'
sonic_ingest_addr = '[::1]:1491'
sonic_ingest_pass = 'SecretPassword'
rpc_port = 19332
rpc_bind = '0.0.0.0'
search_active = true
[files]
public_path = '/uploads'
2023-06-20 07:03:15 +02:00
local_path = '/var/local/myco'
2022-11-14 20:32:28 +01:00
[account_manager]
rpc_port = 19329
rpc_bind = '0.0.0.0'
mqtt_port = 1883
mqtt_bind = '0.0.0.0'
2023-06-20 07:03:15 +02:00
database_url = 'postgres://postgres@localhost/myco_accounts'
2022-11-14 20:32:28 +01:00
[cart_manager]
rpc_port = 19330
rpc_bind = '0.0.0.0'
mqtt_port = 1884
mqtt_bind = '0.0.0.0'
2023-06-20 07:03:15 +02:00
database_url = 'postgres://postgres@localhost/myco_carts'
2022-11-14 20:32:28 +01:00
[email_sender]
rpc_port = 19331
rpc_bind = '0.0.0.0'
mqtt_port = 1885
mqtt_bind = '0.0.0.0'
2023-06-20 07:03:15 +02:00
database_url = 'postgres://postgres@localhost/myco_emails'
2022-11-14 20:32:28 +01:00
[stocks]
rpc_port = 19333
rpc_bind = '0.0.0.0'
mqtt_port = 1886
mqtt_bind = '0.0.0.0'
2023-06-20 07:03:15 +02:00
database_url = 'postgres://postgres@localhost/myco_stocks'