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.
1 parent b7e838d commit bd13f3dCopy full SHA for bd13f3d
.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