docs: fix installation instructions and improve development setup

- Correct git clone URL to use bmad-code-org/BMAD-METHOD
- Add missing npm install step before npm run install:bmad
- Add cd BMAD-METHOD step for clarity
- Update .gitignore to include Python virtual environment patterns

Fixes the installation process that was failing due to missing dependencies
and incorrect repository URL. Now users can successfully clone and install
the BMAD-METHOD framework following the documented steps.
This commit is contained in:
ThePraxium 2025-08-19 18:19:04 -04:00
parent ab70baca59
commit b8f5f61382
2 changed files with 13 additions and 1 deletions

10
.gitignore vendored
View File

@ -37,6 +37,16 @@ CLAUDE.md
.claude
.gemini
# Python virtual environments
venv/
env/
.venv/
.env/
__pycache__/
*.py[cod]
*$py.class
.Python
# Project-specific
.bmad-core
.bmad-creator-tools

View File

@ -104,7 +104,9 @@ This single command handles:
### Alternative: Clone and Build
```bash
git clone https://github.com/bmadcode/bmad-method.git
git clone https://github.com/bmad-code-org/BMAD-METHOD.git
cd BMAD-METHOD
npm install # Install dependencies first
npm run install:bmad # build and install all to a destination folder
```