51 lines
966 B
JSON
51 lines
966 B
JSON
{
|
|
"components": [
|
|
{
|
|
"name": "admin",
|
|
"packageName": "sample-app",
|
|
"protocols": ["admin"],
|
|
"authRequired": false,
|
|
"config": {
|
|
"logLevel": "DEBUG",
|
|
"logDirectory": "./logs",
|
|
"listenOn": {
|
|
"host": "localhost",
|
|
"port": 9001
|
|
},
|
|
"connectTo": {
|
|
"core": {
|
|
"host": "localhost",
|
|
"port": 9100
|
|
}
|
|
}
|
|
}
|
|
},
|
|
{
|
|
"name": "core",
|
|
"packageName": "sample-app",
|
|
"protocols": [
|
|
"execution",
|
|
"info",
|
|
"order_book",
|
|
"risk_limits"
|
|
],
|
|
"authRequired": true,
|
|
"config": {
|
|
"logLevel": "DEBUG",
|
|
"logDirectory": "./logs",
|
|
"dataFilePath": "./data.json",
|
|
"listenOn": {
|
|
"host": "localhost",
|
|
"port": 9100
|
|
}
|
|
}
|
|
}
|
|
],
|
|
"systemTests": [
|
|
"execution",
|
|
"info",
|
|
"order_book",
|
|
"risk_limits"
|
|
]
|
|
}
|