File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ services:
34
34
image : deadly0/bull-board:latest
35
35
restart : always
36
36
ports :
37
- - 3000 :3000
37
+ - 3333 :3000
38
38
environment :
39
39
REDIS_HOST : redis
40
40
REDIS_PORT : 6379
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ type EngineFeature = "KEYPAIR_AUTH" | "CONTRACT_SUBSCRIPTIONS";
10
10
const ReplySchemaOk = Type . Object ( {
11
11
status : Type . String ( ) ,
12
12
engineVersion : Type . Optional ( Type . String ( ) ) ,
13
+ engineTier : Type . Optional ( Type . String ( ) ) ,
13
14
features : Type . Array (
14
15
Type . Union ( [
15
16
Type . Literal ( "KEYPAIR_AUTH" ) ,
@@ -52,6 +53,7 @@ export async function healthCheck(fastify: FastifyInstance) {
52
53
res . status ( StatusCodes . OK ) . send ( {
53
54
status : "OK" ,
54
55
engineVersion : process . env . ENGINE_VERSION ,
56
+ engineTier : process . env . ENGINE_TIER ?? "SELF_HOSTED" ,
55
57
features : getFeatures ( ) ,
56
58
} ) ;
57
59
} ,
You can’t perform that action at this time.
0 commit comments