Skip to content

Commit 7f7d16f

Browse files
committed
chore: bump bkb
1 parent 56ce9f7 commit 7f7d16f

File tree

3 files changed

+100
-100
lines changed

3 files changed

+100
-100
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Start Consumer API
1515
uses: ./
1616
with:
17-
consumerapi-version: v4.2.0
17+
consumerapi-version: v4.2.6
1818

1919
- run: curl localhost:5000/health
2020

@@ -30,6 +30,6 @@ jobs:
3030
uses: ./
3131
with:
3232
consumerapi-port: 5001
33-
consumerapi-version: v4.2.0
33+
consumerapi-version: v4.2.6
3434

3535
- run: curl localhost:5001/health

.prettierrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"tabWidth": 4
2+
"tabWidth": 2
33
}

appsettings.override.json

Lines changed: 97 additions & 97 deletions
Original file line numberDiff line numberDiff line change
@@ -1,109 +1,109 @@
11
{
2-
"Cors": {
3-
"AccessControlAllowCredentials": true
2+
"Cors": {
3+
"AccessControlAllowCredentials": true
4+
},
5+
"Authentication": {
6+
"ApiKey": "test"
7+
},
8+
"Infrastructure": {
9+
"EventBus": {
10+
"Vendor": "RabbitMQ",
11+
"ConnectionInfo": "rabbitmq",
12+
13+
"RabbitMQUsername": "guest",
14+
"RabbitMQPassword": "guest",
15+
"ConnectionRetryCount": 5
416
},
5-
"Authentication": {
6-
"ApiKey": "test"
17+
"SqlDatabase": {
18+
"Provider": "Postgres",
19+
"ConnectionString": "User Id=adminUi;Password=Passw0rd;Server=postgres;Port=5432;Database=enmeshed;"
20+
}
21+
},
22+
"Modules": {
23+
"Challenges": {
24+
"Infrastructure": {
25+
"SqlDatabase": {
26+
"Provider": "Postgres",
27+
"ConnectionString": "User ID=challenges;Password=Passw0rd;Server=postgres;Port=5432;Database=enmeshed;"
28+
}
29+
}
730
},
8-
"Infrastructure": {
9-
"EventBus": {
10-
"Vendor": "RabbitMQ",
11-
"ConnectionInfo": "rabbitmq",
12-
13-
"RabbitMQUsername": "guest",
14-
"RabbitMQPassword": "guest",
15-
"ConnectionRetryCount": 5
16-
},
31+
"Quotas": {
32+
"Infrastructure": {
1733
"SqlDatabase": {
18-
"Provider": "Postgres",
19-
"ConnectionString": "User Id=adminUi;Password=Passw0rd;Server=postgres;Port=5432;Database=enmeshed;"
34+
"Provider": "Postgres",
35+
"ConnectionString": "User ID=quotas;Password=Passw0rd;Server=postgres;Port=5432;Database=enmeshed;"
2036
}
37+
}
2138
},
22-
"Modules": {
23-
"Challenges": {
24-
"Infrastructure": {
25-
"SqlDatabase": {
26-
"Provider": "Postgres",
27-
"ConnectionString": "User ID=challenges;Password=Passw0rd;Server=postgres;Port=5432;Database=enmeshed;"
28-
}
29-
}
30-
},
31-
"Quotas": {
32-
"Infrastructure": {
33-
"SqlDatabase": {
34-
"Provider": "Postgres",
35-
"ConnectionString": "User ID=quotas;Password=Passw0rd;Server=postgres;Port=5432;Database=enmeshed;"
36-
}
37-
}
38-
},
39-
"Devices": {
40-
"Infrastructure": {
41-
"SqlDatabase": {
42-
"Provider": "Postgres",
43-
"ConnectionString": "User ID=devices;Password=Passw0rd;Server=postgres;Port=5432;Database=enmeshed;"
44-
},
45-
"PushNotifications": {
46-
"Provider": "Dummy"
47-
}
48-
}
49-
},
50-
"Files": {
51-
"Infrastructure": {
52-
"SqlDatabase": {
53-
"Provider": "Postgres",
54-
"ConnectionString": "User ID=files;Password=Passw0rd;Server=postgres;Port=5432;Database=enmeshed;"
55-
},
56-
"BlobStorage": {
57-
"CloudProvider": "Azure",
58-
"ConnectionInfo": "DefaultEndpointsProtocol=http;AccountName=devstoreaccount1;AccountKey=Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==;BlobEndpoint=http://azurite:10000/devstoreaccount1;"
59-
}
60-
}
61-
},
62-
"Messages": {
63-
"Infrastructure": {
64-
"SqlDatabase": {
65-
"Provider": "Postgres",
66-
"ConnectionString": "User ID=messages;Password=Passw0rd;Server=postgres;Port=5432;Database=enmeshed;"
67-
}
68-
}
69-
},
70-
"Relationships": {
71-
"Infrastructure": {
72-
"SqlDatabase": {
73-
"Provider": "Postgres",
74-
"ConnectionString": "User ID=relationships;Password=Passw0rd;Server=postgres;Port=5432;Database=enmeshed;"
75-
}
76-
}
77-
},
78-
"Synchronization": {
79-
"Infrastructure": {
80-
"SqlDatabase": {
81-
"Provider": "Postgres",
82-
"ConnectionString": "User ID=synchronization;Password=Passw0rd;Server=postgres;Port=5432;Database=enmeshed;"
83-
}
84-
}
39+
"Devices": {
40+
"Infrastructure": {
41+
"SqlDatabase": {
42+
"Provider": "Postgres",
43+
"ConnectionString": "User ID=devices;Password=Passw0rd;Server=postgres;Port=5432;Database=enmeshed;"
8544
},
86-
"Tokens": {
87-
"Infrastructure": {
88-
"SqlDatabase": {
89-
"Provider": "Postgres",
90-
"ConnectionString": "User ID=tokens;Password=Passw0rd;Server=postgres;Port=5432;Database=enmeshed;"
91-
}
92-
}
45+
"PushNotifications": {
46+
"Provider": "Dummy"
9347
}
48+
}
9449
},
95-
"Serilog": {
96-
"MinimumLevel": {
97-
"Default": "Debug"
50+
"Files": {
51+
"Infrastructure": {
52+
"SqlDatabase": {
53+
"Provider": "Postgres",
54+
"ConnectionString": "User ID=files;Password=Passw0rd;Server=postgres;Port=5432;Database=enmeshed;"
9855
},
99-
"Enrich": ["FromLogContext", "WithProcessId", "WithThreadId"],
100-
"WriteTo": [
101-
{
102-
"Name": "Console",
103-
"Args": {
104-
"outputTemplate": "{Timestamp:yyyy-MM-dd HH:mm:ss.fff}|{Level} - CorrelationId:{CorrelationId} - RequestId:{RequestId} - RequestPath:{RequestPath}{NewLine} {SourceContext}{NewLine} {Message}{NewLine}{Exception}"
105-
}
106-
}
107-
]
56+
"BlobStorage": {
57+
"CloudProvider": "Azure",
58+
"ConnectionInfo": "DefaultEndpointsProtocol=http;AccountName=devstoreaccount1;AccountKey=Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw==;BlobEndpoint=http://azurite:10000/devstoreaccount1;"
59+
}
60+
}
61+
},
62+
"Messages": {
63+
"Infrastructure": {
64+
"SqlDatabase": {
65+
"Provider": "Postgres",
66+
"ConnectionString": "User ID=messages;Password=Passw0rd;Server=postgres;Port=5432;Database=enmeshed;"
67+
}
68+
}
69+
},
70+
"Relationships": {
71+
"Infrastructure": {
72+
"SqlDatabase": {
73+
"Provider": "Postgres",
74+
"ConnectionString": "User ID=relationships;Password=Passw0rd;Server=postgres;Port=5432;Database=enmeshed;"
75+
}
76+
}
77+
},
78+
"Synchronization": {
79+
"Infrastructure": {
80+
"SqlDatabase": {
81+
"Provider": "Postgres",
82+
"ConnectionString": "User ID=synchronization;Password=Passw0rd;Server=postgres;Port=5432;Database=enmeshed;"
83+
}
84+
}
85+
},
86+
"Tokens": {
87+
"Infrastructure": {
88+
"SqlDatabase": {
89+
"Provider": "Postgres",
90+
"ConnectionString": "User ID=tokens;Password=Passw0rd;Server=postgres;Port=5432;Database=enmeshed;"
91+
}
92+
}
10893
}
94+
},
95+
"Serilog": {
96+
"MinimumLevel": {
97+
"Default": "Debug"
98+
},
99+
"Enrich": ["FromLogContext", "WithProcessId", "WithThreadId"],
100+
"WriteTo": [
101+
{
102+
"Name": "Console",
103+
"Args": {
104+
"outputTemplate": "{Timestamp:yyyy-MM-dd HH:mm:ss.fff}|{Level} - CorrelationId:{CorrelationId} - RequestId:{RequestId} - RequestPath:{RequestPath}{NewLine} {SourceContext}{NewLine} {Message}{NewLine}{Exception}"
105+
}
106+
}
107+
]
108+
}
109109
}

0 commit comments

Comments
 (0)