rwadurian/backend/services/mpc-service/config/test.json

39 lines
830 B
JSON

{
"app": {
"port": 3016,
"env": "test",
"apiPrefix": "api/v1"
},
"database": {
"url": "postgresql://mpc_user:mpc_password@localhost:5432/mpc_service_test"
},
"jwt": {
"secret": "test-jwt-secret",
"accessExpiresIn": "1h",
"refreshExpiresIn": "1d"
},
"redis": {
"host": "localhost",
"port": 6379,
"password": "",
"db": 15
},
"kafka": {
"brokers": ["localhost:9092"],
"clientId": "mpc-party-service-test",
"groupId": "mpc-party-group-test"
},
"mpc": {
"coordinatorUrl": "http://localhost:50051",
"coordinatorTimeout": 5000,
"messageRouterWsUrl": "ws://localhost:50052",
"keygenTimeout": 60000,
"signingTimeout": 30000,
"refreshTimeout": 60000
},
"tss": {
"libPath": "/opt/tss-lib/tss",
"tempDir": "/tmp/tss-test"
}
}