Open source knowledge base for the vibecoding community. Learn AI-assisted coding, prompting strategies, and collaborative development practices.
Visit the live documentation at: vibecoding-navy.vercel.app
# Clone the repository
git clone https://github.com/mbernier/vibecoding.git
cd vibecoding
# Create and activate a virtual environment
python3 -m venv .venv
source .venv/bin/activate # On Windows: .venv\Scripts\activate
# Install dependencies
pip install -r requirements.txt
# Start the development server
mkdocs serveOpen http://localhost:8000 to view the documentation.
mkdocs buildThe static site will be generated in the site/ directory.
vibecoding/
├── docs/ # Documentation source files
│ ├── index.md # Home page
│ ├── getting-started/ # Getting started guides
│ ├── guides/ # In-depth guides
│ ├── community/ # Community resources
│ └── faq.md # Frequently asked questions
├── mkdocs.yml # MkDocs configuration
├── requirements.txt # Python dependencies
└── README.md # This file
We welcome contributions from the community! See Contributing Guide for details.
- Fork this repository
- Make your changes in the
docs/directory - Submit a pull request
See LICENSE for details.