fix(windows): use asyncpg on Windows and make artifact filenames Windows-safe (no “:”) — Refs #2756 (#3207)

Co-authored-by: Shuchang Zheng <wintonzheng0325@gmail.com>
This commit is contained in:
Burea Mihai-Ovidiu
2025-08-20 00:02:49 +03:00
committed by GitHub
parent ae4fbe638e
commit e67f0a1e7e
2 changed files with 39 additions and 0 deletions

View File

@@ -75,6 +75,9 @@ MAX_STEPS_PER_RUN=50
LOG_LEVEL=INFO
# DATABASE_STRING: Database connection string.
DATABASE_STRING="postgresql+psycopg://skyvern@localhost/skyvern"
# If you are using Windows use this DATABASE_STRING.
# DATABASE_STRING="postgresql+asyncpg://skyvern@localhost/skyvern"
# PORT: Port to run the agent on.
PORT=8000