Skyvern/skyvern/cli/utils.py
Shuchang Zheng 72caccd3d6
Some checks are pending
Run tests and pre-commit / Frontend Lint and Build (push) Waiting to run
Run tests and pre-commit / Run tests and pre-commit hooks (push) Waiting to run
Publish Fern Docs / run (push) Waiting to run
Add PostHog analytics for setup pain points tracking (#4840)
Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-21 15:32:56 -08:00

47 lines
1.8 KiB
Python

import asyncio
import logging
import sys
import typer
from skyvern.analytics import capture_setup_error, capture_setup_event
from skyvern.cli.console import console
from skyvern.utils.env_paths import resolve_backend_env_path
async def start_services(server_only: bool = False) -> None:
"""Start Skyvern services in the background.
Args:
server_only: If True, only start the server, not the UI.
"""
capture_setup_event("services-start", extra_data={"server_only": server_only})
try:
# Start server in the background
server_process = await asyncio.create_subprocess_exec(
sys.executable, "-m", "skyvern.cli.commands", "run", "server"
)
# Give server a moment to start
await asyncio.sleep(2)
if not server_only:
# Start UI in the background
ui_process = await asyncio.create_subprocess_exec(sys.executable, "-m", "skyvern.cli.commands", "run", "ui")
capture_setup_event("services-running", success=True, extra_data={"server_only": server_only})
console.print("\n🎉 [bold green]Skyvern is now running![/bold green]")
console.print("🌐 [bold]Access the UI at:[/bold] [cyan]http://localhost:8080[/cyan]")
console.print(f"🔑 [bold]Your API key is in {resolve_backend_env_path()} as SKYVERN_API_KEY[/bold]")
# Wait for processes to complete (they won't unless killed)
if not server_only:
await asyncio.gather(server_process.wait(), ui_process.wait())
else:
await server_process.wait()
except Exception as e:
capture_setup_error("services-start-fail", e, error_type="service_startup_error")
console.print(f"[bold red]Error starting services: {str(e)}[/bold red]")
logging.error("Startup failed", exc_info=True)
raise typer.Exit(1)