We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b7e838d + bd13f3d commit 0c02a15Copy full SHA for 0c02a15
.github/workflows/ci.yml
@@ -57,7 +57,7 @@ jobs:
57
env:
58
API_HOST: 127.0.0.1
59
API_PORT: 3000
60
- PROMETHEUS_PORT: 9154
+ PROMETHEUS_PORT: 9153
61
PGHOST: 127.0.0.1
62
PGPORT: 5432
63
PGUSER: postgres
src/env.ts
@@ -28,7 +28,7 @@ const schema = Type.Object({
28
/** Hostname that will be reported to the chainhook node so it can call us back with events */
29
EXTERNAL_HOSTNAME: Type.String({ default: '127.0.0.1' }),
30
/** Port in which to serve prometheus metrics */
31
- PROMETHEUS_PORT: Type.Number({ default: 9154 }),
+ PROMETHEUS_PORT: Type.Number({ default: 9153 }),
32
/** Port in which to serve the profiler */
33
PROFILER_PORT: Type.Number({ default: 9119 }),
34
0 commit comments