Skip to content

Commit 0995f65

Browse files
committed
include dev dependencies
1 parent 26e94c1 commit 0995f65

2 files changed

Lines changed: 35 additions & 18 deletions

File tree

README.md

Lines changed: 24 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -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
3236
agentstack init myproject
3337
cd myproject
3438

35-
# Create and activate virtual environment
39+
# Create and activate project environment
3640
uv venv
3741
source .venv/bin/activate # On Unix/macOS
3842
# or
@@ -67,27 +71,36 @@ pip install uv
6771

6872
Once 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
7285
uv 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
7891
agentstack init myproject
7992
cd myproject
8093
```
8194

82-
3. Set up your project environment:
95+
4. Set up your project environment:
8396
```sh
8497
uv venv
8598
source .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
92105
uv sync
93106
```

agentstack/cli/cli.py

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -439,18 +439,22 @@ def insert_template(
439439
"\n"
440440
"🚀 \033[92mAgentStack project generated successfully!\033[0m\n\n"
441441
" Next steps:\n\n"
442-
" 1. Install AgentStack globally (if not already installed):\n"
442+
" 1. Create a development environment:\n"
443+
" cd /Users/bastiannisnaciovenegasarevalo/uvAsTackCloneT-2/actualCustomRepo/uvAgentStack\n"
444+
" uv venv\n"
445+
" source .venv/bin/activate\n"
446+
" uv pip install -e '.[dev]'\n\n"
447+
" 2. Install AgentStack globally:\n"
443448
" uv tool install -e /Users/bastiannisnaciovenegasarevalo/uvAsTackCloneT-2/actualCustomRepo/uvAgentStack\n"
444-
" # Make sure UV's bin directory is in your PATH\n"
445-
" uv tool update-shell\n\n"
446-
f" 2. Navigate to your project:\n"
449+
" export PATH=\"$HOME/.local/bin:$PATH\"\n\n"
450+
f" 3. Navigate to your project:\n"
447451
f" cd {project_metadata.project_slug}\n\n"
448-
" 3. Create and activate virtual environment:\n"
452+
" 4. Create and activate project environment:\n"
449453
" uv venv\n"
450454
" source .venv/bin/activate\n\n"
451-
" 4. Install project dependencies:\n"
455+
" 5. Install project dependencies:\n"
452456
" uv sync\n\n"
453-
" 5. Try running your agent:\n"
457+
" 6. Try running your agent:\n"
454458
" agentstack run\n\n"
455459
" Run `agentstack quickstart` or `agentstack docs` for next steps.\n"
456460
)

0 commit comments

Comments
 (0)