Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(root): add IS_TOPIC_NOTIFICATION_ENABLED variable #6773

Open
wants to merge 2 commits into
base: next
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions apps/worker/src/.env.development
Original file line number Diff line number Diff line change
Expand Up @@ -77,3 +77,5 @@ BROADCAST_QUEUE_CHUNK_SIZE=100
MULTICAST_QUEUE_CHUNK_SIZE=100

API_ROOT_URL=http://localhost:3000

IS_TOPIC_NOTIFICATION_ENABLED=true
2 changes: 2 additions & 0 deletions apps/worker/src/.env.production
Original file line number Diff line number Diff line change
Expand Up @@ -80,3 +80,5 @@ AUTO_CREATE_INDEXES=false

BROADCAST_QUEUE_CHUNK_SIZE=100
MULTICAST_QUEUE_CHUNK_SIZE=100

IS_TOPIC_NOTIFICATION_ENABLED=true
2 changes: 2 additions & 0 deletions apps/worker/src/.env.test
Original file line number Diff line number Diff line change
Expand Up @@ -86,3 +86,5 @@ MULTICAST_QUEUE_CHUNK_SIZE=100
IS_WORKFLOW_PREFERENCES_ENABLED=true

API_ROOT_URL=http://localhost:1337

IS_TOPIC_NOTIFICATION_ENABLED=true
2 changes: 2 additions & 0 deletions apps/worker/src/.example.env
Original file line number Diff line number Diff line change
Expand Up @@ -77,3 +77,5 @@ BROADCAST_QUEUE_CHUNK_SIZE=100
MULTICAST_QUEUE_CHUNK_SIZE=100

API_ROOT_URL=http://localhost:3000

IS_TOPIC_NOTIFICATION_ENABLED=true
2 changes: 2 additions & 0 deletions docker/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -65,3 +65,5 @@ NEW_RELIC_APP_NAME=
NEW_RELIC_LICENSE_KEY=

DOCKER_LOCALSTACK_PORT=4566

IS_TOPIC_NOTIFICATION_ENABLED=true
2 changes: 2 additions & 0 deletions docker/community/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -66,3 +66,5 @@ NEW_RELIC_LICENSE_KEY=

BROADCAST_QUEUE_CHUNK_SIZE=100
MULTICAST_QUEUE_CHUNK_SIZE=100

IS_TOPIC_NOTIFICATION_ENABLED=true
1 change: 1 addition & 0 deletions docker/community/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ services:
NEW_RELIC_LICENSE_KEY: ${NEW_RELIC_LICENSE_KEY}
BROADCAST_QUEUE_CHUNK_SIZE: ${BROADCAST_QUEUE_CHUNK_SIZE}
MULTICAST_QUEUE_CHUNK_SIZE: ${MULTICAST_QUEUE_CHUNK_SIZE}
IS_TOPIC_NOTIFICATION_ENABLED: ${IS_TOPIC_NOTIFICATION_ENABLED}

ws:
image: 'ghcr.io/novuhq/novu/ws:2.0.0'
Expand Down
Loading