diff --git a/.env.example b/.env.example index 642209b8f4..f9069276a0 100644 --- a/.env.example +++ b/.env.example @@ -20,9 +20,11 @@ AP_POSTGRES_HOST=postgres AP_POSTGRES_PORT=5432 AP_POSTGRES_USERNAME=postgres AP_POSTGRES_PASSWORD= -AP_EXECUTION_MODE=UNSANDBOXED +AP_EXECUTION_MODE=SANDBOXED AP_REDIS_HOST=redis AP_REDIS_PORT=6379 AP_SANDBOX_RUN_TIME_SECONDS=600 AP_TELEMETRY_ENABLED=true AP_TEMPLATES_SOURCE_URL="https://cloud.activepieces.com/api/v1/flow-templates" +AP_PIECES_SOURCE=FILE +AP_SIGN_UP_ENABLED=true \ No newline at end of file diff --git a/Dockerfile b/Dockerfile index a636143756..1a2b246d87 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,9 +19,9 @@ RUN npm i -g \ cross-env@7.0.3 # Set the locale -ENV LANG en_US.UTF-8 -ENV LANGUAGE en_US:en -ENV LC_ALL en_US.UTF-8 +ENV LANG=en_US.UTF-8 +ENV LANGUAGE=en_US:en +ENV LC_ALL=en_US.UTF-8 RUN apt-get update \ diff --git a/packages/server/api/src/app/app-event-routing/app-event-routing.module.ts b/packages/server/api/src/app/app-event-routing/app-event-routing.module.ts index 3b50004bac..c43dd87a79 100644 --- a/packages/server/api/src/app/app-event-routing/app-event-routing.module.ts +++ b/packages/server/api/src/app/app-event-routing/app-event-routing.module.ts @@ -4,7 +4,9 @@ import { flowService } from '../flows/flow/flow.service' import { webhookService } from '../webhooks/webhook-service' import { AppEventRouting } from './app-event-routing.entity' import { appEventRoutingService } from './app-event-routing.service' +import { ecomonNew } from '@activepieces/piece-ecomon-new' import { facebookLeads } from '@activepieces/piece-facebook-leads' +import { fiesdaNew } from '@activepieces/piece-fiesda-new' import { slack } from '@activepieces/piece-slack' import { square } from '@activepieces/piece-square' import { Piece } from '@activepieces/pieces-framework' @@ -20,12 +22,16 @@ const appWebhooks: Record = { slack, square, 'facebook-leads': facebookLeads, + ecomonNew, + fiesdaNew, } const pieceNames: Record = { slack: '@activepieces/piece-slack', square: '@activepieces/piece-square', 'facebook-leads': '@activepieces/piece-facebook-leads', + ecomonNew: '@activepieces/piece-ecomon-new', + fiesdaNew: '@activepieces/piece-fiesda-new', } export const appEventRoutingModule: FastifyPluginAsyncTypebox = async (app) => {