This is the template project that's checked out and configured when you run the bando-up command from ljsthw-bandolier. This is where the code really lives.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
bandolier-template/commands/templates/secrets/config.json

54 lines
1.1 KiB

{
"paypal_private": {
"email": "payments@thesite.com",
"client_id": "PUBLICCLIENTID",
"secret": "SECRETKEY",
"disabled": true
},
"stripe_private": {
"email": "payments@thesite.com",
"client_id": "pk_YOURPUBLICID",
"secret": "YOURSECRET",
"endpoint_secret": "ENDPOINTSECRET",
"api_version": "2022-08-01",
"disabled": true
},
"btcpay_private": {
"url": "https://yourbtcpayserver.com",
"auth": "your BTC pay auth key",
"disabled": true
},
"base_host": "http://127.0.0.1:5001",
"bull_config": {
"redis": {
"host": "localhost",
"port": 6379,
"db": 5
}
},
"auth": {
"cookie_domain": "127.0.0.1",
"cookie_secret": "some_secret"
},
"loader": {
"root_db": "../ljsthw-private/db",
"tracker": "localhost:9001"
},
"session_store": "redis",
"media_servers": [
"http://localhost:5001"
],
"socket": {
"api_key": "AHEXCODE"
},
"discord": {
"enabled": false,
"token": "DISCORD_KEY",
"time_limit": "24 hours",
"invites": { "maxAge": 86400, "maxUses": 1, "unique": true}
}
}