Skip to content

Commit cca8c8b

Browse files
committed
more unused env vars and example
1 parent f7ed187 commit cca8c8b

File tree

3 files changed

+3
-24
lines changed

3 files changed

+3
-24
lines changed

.env.example

Lines changed: 3 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ APP_ENV=development
1212
APP_ORIGIN=http://localhost:3030
1313
ELECTRIC_ORIGIN=http://localhost:3060
1414
NODE_ENV=development
15-
V3_ENABLED=true
1615

1716
# Redis is used for the v3 queuing and v2 concurrency control
1817
REDIS_HOST="localhost"
@@ -22,6 +21,9 @@ REDIS_TLS_DISABLED="true"
2221
DEV_OTEL_EXPORTER_OTLP_ENDPOINT="http://localhost:3030/otel"
2322
DEV_OTEL_BATCH_PROCESSING_ENABLED="0"
2423

24+
# When the domain is set to `localhost` the CLI deploy command will only --load the image by default and not --push it
25+
DEPLOY_REGISTRY_HOST=localhost:5000
26+
2527
# OPTIONAL VARIABLES
2628
# This is used for validating emails that are allowed to log in. Every email that do not match this regex will be rejected.
2729
# WHITELISTED_EMAILS="authorized@yahoo\.com|authorized@gmail\.com"
@@ -60,29 +62,11 @@ DEV_OTEL_BATCH_PROCESSING_ENABLED="0"
6062
# FROM_EMAIL=
6163
# REPLY_TO_EMAIL=
6264

63-
# Remove the following line to enable logging telemetry traces to the console
64-
LOG_TELEMETRY="false"
65-
6665
# CLOUD VARIABLES
6766
POSTHOG_PROJECT_KEY=
68-
PLAIN_API_KEY=
69-
CLOUD_AIRTABLE_CLIENT_ID=
70-
CLOUD_AIRTABLE_CLIENT_SECRET=
71-
CLOUD_GITHUB_CLIENT_ID=
72-
CLOUD_GITHUB_CLIENT_SECRET=
73-
CLOUD_LINEAR_CLIENT_ID=
74-
CLOUD_LINEAR_CLIENT_SECRET=
75-
CLOUD_SLACK_APP_HOST=
76-
CLOUD_SLACK_CLIENT_ID=
77-
CLOUD_SLACK_CLIENT_SECRET=
78-
79-
# v3 variables
80-
PROVIDER_SECRET=provider-secret # generate the actual secret with `openssl rand -hex 32`
81-
COORDINATOR_SECRET=coordinator-secret # generate the actual secret with `openssl rand -hex 32`
8267

8368
# DEPOT_ORG_ID=<Depot org id>
8469
# DEPOT_TOKEN=<Depot org token>
85-
DEPLOY_REGISTRY_HOST=localhost:5000 # This is the host that the deploy CLI will use to push images to the registry
8670
# DEV_OTEL_EXPORTER_OTLP_ENDPOINT="http://0.0.0.0:4318"
8771
# These are needed for the object store (for handling large payloads/outputs)
8872
# OBJECT_STORE_BASE_URL="https://{bucket}.{accountId}.r2.cloudflarestorage.com"
@@ -92,8 +76,5 @@ DEPLOY_REGISTRY_HOST=localhost:5000 # This is the host that the deploy CLI will
9276

9377
# These control the server-side internal telemetry
9478
# INTERNAL_OTEL_TRACE_EXPORTER_URL=<URL to send traces to>
95-
# INTERNAL_OTEL_TRACE_EXPORTER_AUTH_HEADER_NAME=<Header name for the auth token>
96-
# INTERNAL_OTEL_TRACE_EXPORTER_AUTH_HEADER_VALUE=<Auth token value>
9779
# INTERNAL_OTEL_TRACE_LOGGING_ENABLED=1
98-
# INTERNAL_OTEL_TRACE_SAMPING_RATE=20 # this means 1/20 traces or 5% of traces will be sampled (sampled = recorded)
9980
# INTERNAL_OTEL_TRACE_INSTRUMENT_PRISMA_ENABLED=0,

apps/webapp/app/env.server.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@ const EnvironmentSchema = z.object({
5656
WORKER_CONCURRENCY: z.coerce.number().int().default(10),
5757
WORKER_POLL_INTERVAL: z.coerce.number().int().default(1000),
5858
WORKER_ENABLED: z.string().default("true"),
59-
EXECUTION_WORKER_ENABLED: z.string().default("true"),
6059
GRACEFUL_SHUTDOWN_TIMEOUT: z.coerce.number().int().default(60000),
6160
DISABLE_SSE: z.string().optional(),
6261
OPENAI_API_KEY: z.string().optional(),

docker/services-compose.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ services:
4141
REMIX_APP_PORT: 3030
4242
PORT: 3030
4343
WORKER_ENABLED: "false"
44-
EXECUTION_WORKER_ENABLED: "false"
4544
networks:
4645
- app_network
4746
worker:

0 commit comments

Comments
 (0)