-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
29 lines (24 loc) · 1.11 KB
/
Copy path.env.example
File metadata and controls
29 lines (24 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# HTTP port: @atriumjs/demo defaults to 3333; examples/express-host defaults to 3000 when unset in code.
# PORT=3333
ATRIUM_WORKER_DIAL_BASE=ws://127.0.0.1:7070
ATRIUM_WORKER_SECRET=replace-me-in-production
# Worker process
ATRIUM_WORKER_PORT=7070
ATRIUM_WORKER_DRY=0
# Headed by default. Set to 1 for headless (no X11 / Xvfb).
# ATRIUM_WORKER_HEADLESS=1
# Stealth: playwright-extra + puppeteer-extra-plugin-stealth (set ATRIUM_STEALTH=0 to disable)
# ATRIUM_STEALTH=1
# ATRIUM_VIEWPORT_W=1366
# ATRIUM_VIEWPORT_H=768
# ATRIUM_USER_AGENT=Mozilla/5.0 (Windows NT 10.0; Win64; x64) ...
# ATRIUM_LOCALE=en-US
# ATRIUM_TIMEZONE=America/Los_Angeles
# ATRIUM_COLOR_SCHEME=light
# ATRIUM_CHROMIUM_CHANNEL=chrome
# Set to 1 only for local dev with self-signed worker TLS (forwards rejectUnauthorized: false on dial).
# ATRIUM_WORKER_TLS_INSECURE=0
# Worker dial coordinates — the API process opens a WebSocket to the worker at
# ATRIUM_WORKER_DIAL_BASE and authenticates with ATRIUM_WORKER_SECRET (both set
# above). No Redis / BullMQ in the default dev path; the in-memory session
# store inside @atriumjs/core handles session state.