Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions docs/local-dev-quickstart.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Local Development Quickstart

This document describes a minimal setup for running Polymarket agents locally.

## 1. Create a virtual environment

python -m venv .venv
source .venv/bin/activate # On Windows: .venv\Scripts\activate

## 2. Install dependencies

pip install -r requirements.txt

## 3. Configure environment

Copy the example env file:

cp .env.example .env

Then edit `.env` and set your API key and wallet private key.

## 4. Run tests and a sample agent

pytest

Then start one of the sample agents described in the README.

Keep this document updated if the local development workflow changes.