@@ -19,20 +19,24 @@ AgentStack is _not_ a low-code alternative to development. Developers will still
1919
2020## Quick Overview
2121
22- Assuming you're in your project folder (e.g., ` TestFolder ` ) and have UV installed :
22+ First, set up the development environment :
2323
2424``` sh
25- # Install AgentStack globally using UV's tool management
26- uv tool install -e /Users/bastiannisnaciovenegasarevalo/uvAsTackCloneT-2/actualCustomRepo/uvAgentStack
25+ # Create development environment
26+ cd /Users/bastiannisnaciovenegasarevalo/uvAsTackCloneT-2/actualCustomRepo/uvAgentStack
27+ uv venv
28+ source .venv/bin/activate
29+ uv pip install -e ' .[dev]'
2730
28- # Make sure UV's bin directory is in your PATH
29- uv tool update-shell
31+ # Install AgentStack globally
32+ uv tool install -e /Users/bastiannisnaciovenegasarevalo/uvAsTackCloneT-2/actualCustomRepo/uvAgentStack
33+ export PATH=" $HOME /.local/bin:$PATH "
3034
3135# Create a new AgentStack project
3236agentstack init myproject
3337cd myproject
3438
35- # Create and activate virtual environment
39+ # Create and activate project environment
3640uv venv
3741source .venv/bin/activate # On Unix/macOS
3842# or
@@ -67,27 +71,36 @@ pip install uv
6771
6872Once UV is installed, here's how to create a new project:
6973
70- 1 . Install AgentStack globally using UV's tool management:
74+ 1 . Set up the development environment:
75+ ``` sh
76+ # Create development environment
77+ cd /Users/bastiannisnaciovenegasarevalo/uvAsTackCloneT-2/actualCustomRepo/uvAgentStack
78+ uv venv
79+ source .venv/bin/activate
80+ uv pip install -e ' .[dev]'
81+ ```
82+
83+ 2 . Install AgentStack globally:
7184``` sh
7285uv tool install -e /Users/bastiannisnaciovenegasarevalo/uvAsTackCloneT-2/actualCustomRepo/uvAgentStack
73- uv tool update-shell # Add UV's bin directory to your PATH
86+ export PATH= " $HOME /.local/ bin: $ PATH"
7487```
7588
76- 2 . Create your AgentStack project:
89+ 3 . Create your AgentStack project:
7790``` sh
7891agentstack init myproject
7992cd myproject
8093```
8194
82- 3 . Set up your project environment:
95+ 4 . Set up your project environment:
8396``` sh
8497uv venv
8598source .venv/bin/activate # On Unix/macOS
8699# or
87100# .venv\Scripts\activate # On Windows
88101```
89102
90- 4 . Install project dependencies:
103+ 5 . Install project dependencies:
91104``` sh
92105uv sync
93106```
0 commit comments