diff --git a/dev/docker-compose.yaml b/dev/docker-compose.yaml index 6ef971ecff..0e94610b74 100644 --- a/dev/docker-compose.yaml +++ b/dev/docker-compose.yaml @@ -252,7 +252,8 @@ services: - BRANDING_URL=http://huly.local:8087/branding.json - STREAM_URL=http://huly.local:1080/recording - COMMUNICATION_API_ENABLED=true - - BACKUP_URL=http://huly.local:4039/api/backup + - BACKUP_URL=http://huly.local:4039/api/backup, + - EXCLUDED_APPLICATIONS_FOR_ANONYMOUS=["chunter", "notification"] # - DISABLE_SIGNUP=true restart: unless-stopped transactor_cockroach: diff --git a/pods/front/src/__start.ts b/pods/front/src/__start.ts index 60478d0d20..54ca20c464 100644 --- a/pods/front/src/__start.ts +++ b/pods/front/src/__start.ts @@ -53,5 +53,6 @@ startFront(metricsContext, { PUBLIC_SCHEDULE_URL: process.env.PUBLIC_SCHEDULE_URL, CALDAV_SERVER_URL: process.env.CALDAV_SERVER_URL, EXPORT_URL: process.env.EXPORT_URL, - COMMUNICATION_API_ENABLED: process.env.COMMUNICATION_API_ENABLED + COMMUNICATION_API_ENABLED: process.env.COMMUNICATION_API_ENABLED, + EXCLUDED_APPLICATIONS_FOR_ANONYMOUS: process.env.EXCLUDED_APPLICATIONS_FOR_ANONYMOUS })