@@ -19,51 +19,21 @@ The browser-agent microservice provides AI-powered browser automation capabiliti
1919
2020## Getting Started
2121
22- ### Prerequisites
23-
2422- [ mise] ( https://mise.jdx.dev/ ) - Development environment manager
2523- Python 3.11+ (managed via mise)
2624- Node.js with ` bun ` (for deployment tools, managed via mise)
2725
28- ### Quick Setup
29-
30- The easiest way to get started is to use the automated setup command:
31-
32- ``` bash
33- # Install mise if you haven't already
34- curl https://mise.run | sh
35-
36- # Clone the repository
37- git clone < repository-url>
38- cd browser-agent
39-
40- # Automated setup - installs everything you need
41- just claude
42- ```
43-
44- The ` just claude ` command will:
45- - Install Python, Node.js, and other tools via mise
46- - Set up the Python virtual environment with uv
47- - Install all dependencies
48- - Create a ` .env ` template file
49-
50- ### Manual Setup
51-
52- If you prefer to set up manually:
53-
5426``` bash
5527# Install development tools
5628mise install
5729
5830# Install Python dependencies
59- uv install --group dev
31+ uv sync
6032
6133# Copy environment template
6234cp .env.example .env
6335```
6436
65- ### Environment Configuration
66-
6737Edit your ` .env ` file with the required values:
6838
6939``` bash
@@ -81,8 +51,6 @@ S3_ENDPOINT_URL="https://{account_id}.r2.cloudflarestorage.com"
8151S3_SECRET_ACCESS_KEY=" your-secret-key"
8252```
8353
84- ### Verify Setup
85-
8654Test that everything is working:
8755
8856``` bash
0 commit comments