feat: add more Agent services & easytier
This commit is contained in:
@@ -0,0 +1,48 @@
|
||||
# Global Registry Prefix (optional)
|
||||
# GLOBAL_REGISTRY=
|
||||
|
||||
# Service Versions
|
||||
SKYVERN_VERSION=v1.0.31
|
||||
POSTGRES_VERSION=15
|
||||
|
||||
# Timezone
|
||||
TZ=UTC
|
||||
|
||||
# Host ports
|
||||
SKYVERN_PORT_OVERRIDE=8000
|
||||
SKYVERN_UI_PORT_OVERRIDE=8080
|
||||
|
||||
# Skyvern API Key (CHANGEME: set a strong random key for the REST API)
|
||||
SKYVERN_API_KEY=changeme_skyvern_api_key_CHANGEME
|
||||
|
||||
# Browser type: chromium-headless (default), chromium, or chrome
|
||||
BROWSER_TYPE=chromium-headless
|
||||
|
||||
# LLM Provider API Keys (at least one is required for task automation)
|
||||
# OPENAI_API_KEY=sk-...
|
||||
# ANTHROPIC_API_KEY=sk-ant-...
|
||||
|
||||
# PostgreSQL password
|
||||
POSTGRES_PASSWORD=skyvern
|
||||
|
||||
# UI → API connection (must be the address reachable from the user's browser)
|
||||
VITE_API_BASE_URL=http://localhost:8000
|
||||
VITE_WSS_BASE_URL=ws://localhost:8000
|
||||
|
||||
# Resource Limits - Skyvern backend (includes Playwright + Chromium)
|
||||
SKYVERN_CPU_LIMIT=2
|
||||
SKYVERN_MEMORY_LIMIT=4G
|
||||
SKYVERN_CPU_RESERVATION=0.5
|
||||
SKYVERN_MEMORY_RESERVATION=1G
|
||||
|
||||
# Resource Limits - Skyvern UI
|
||||
SKYVERN_UI_CPU_LIMIT=0.5
|
||||
SKYVERN_UI_MEMORY_LIMIT=256M
|
||||
SKYVERN_UI_CPU_RESERVATION=0.1
|
||||
SKYVERN_UI_MEMORY_RESERVATION=64M
|
||||
|
||||
# Resource Limits - PostgreSQL
|
||||
POSTGRES_CPU_LIMIT=1
|
||||
POSTGRES_MEMORY_LIMIT=1G
|
||||
POSTGRES_CPU_RESERVATION=0.25
|
||||
POSTGRES_MEMORY_RESERVATION=256M
|
||||
Reference in New Issue
Block a user