fix: remove hardcoded sentry dsn
This commit is contained in:
parent
4b26aeef9a
commit
ae531c445d
2 changed files with 0 additions and 6 deletions
|
|
@ -2,7 +2,6 @@ COOLIFY_APP_ID=local-dev
|
||||||
# 32 bits long secret key
|
# 32 bits long secret key
|
||||||
COOLIFY_SECRET_KEY=12341234123412341234123412341234
|
COOLIFY_SECRET_KEY=12341234123412341234123412341234
|
||||||
COOLIFY_DATABASE_URL=file:../db/dev.db
|
COOLIFY_DATABASE_URL=file:../db/dev.db
|
||||||
COOLIFY_SENTRY_DSN=
|
|
||||||
|
|
||||||
COOLIFY_IS_ON=docker
|
COOLIFY_IS_ON=docker
|
||||||
COOLIFY_WHITE_LABELED=false
|
COOLIFY_WHITE_LABELED=false
|
||||||
|
|
|
||||||
|
|
@ -26,7 +26,6 @@ declare module 'fastify' {
|
||||||
COOLIFY_APP_ID: string,
|
COOLIFY_APP_ID: string,
|
||||||
COOLIFY_SECRET_KEY: string,
|
COOLIFY_SECRET_KEY: string,
|
||||||
COOLIFY_DATABASE_URL: string,
|
COOLIFY_DATABASE_URL: string,
|
||||||
COOLIFY_SENTRY_DSN: string,
|
|
||||||
COOLIFY_IS_ON: string,
|
COOLIFY_IS_ON: string,
|
||||||
COOLIFY_WHITE_LABELED: string,
|
COOLIFY_WHITE_LABELED: string,
|
||||||
COOLIFY_WHITE_LABELED_ICON: string | null,
|
COOLIFY_WHITE_LABELED_ICON: string | null,
|
||||||
|
|
@ -58,10 +57,6 @@ const host = '0.0.0.0';
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: 'file:../db/dev.db'
|
default: 'file:../db/dev.db'
|
||||||
},
|
},
|
||||||
COOLIFY_SENTRY_DSN: {
|
|
||||||
type: 'string',
|
|
||||||
default: null
|
|
||||||
},
|
|
||||||
COOLIFY_IS_ON: {
|
COOLIFY_IS_ON: {
|
||||||
type: 'string',
|
type: 'string',
|
||||||
default: 'docker'
|
default: 'docker'
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue