63 lines
1006 B
Markdown
63 lines
1006 B
Markdown
# Installation
|
|
|
|
**Get WDS up and running in 5 minutes**
|
|
|
|
---
|
|
|
|
## Prerequisites
|
|
|
|
- Node.js 18+ installed
|
|
- Git installed
|
|
- Code editor (VS Code recommended)
|
|
|
|
---
|
|
|
|
## Quick Install
|
|
|
|
```bash
|
|
# Clone the repository
|
|
git clone https://github.com/whiteport-collective/whiteport-design-studio.git
|
|
|
|
# Navigate to the directory
|
|
cd whiteport-design-studio
|
|
|
|
# Install dependencies
|
|
npm install
|
|
|
|
# Start WDS
|
|
npm start
|
|
```
|
|
|
|
---
|
|
|
|
## Verify Installation
|
|
|
|
You should see:
|
|
|
|
```
|
|
✅ WDS is running
|
|
🎨 Ready to design
|
|
```
|
|
|
|
---
|
|
|
|
## Next Steps
|
|
|
|
- [About WDS](about-wds.md) - Understand what WDS is and why it exists
|
|
- [Quick Start Guide](quick-start.md) - Your first 5 minutes
|
|
- [Learn WDS Course](../learn/00-course-overview.md) - Learn the concepts deeply
|
|
|
|
---
|
|
|
|
## Troubleshooting
|
|
|
|
**Issue:** Node version error
|
|
**Solution:** Update to Node.js 18 or higher
|
|
|
|
**Issue:** Permission denied
|
|
**Solution:** Run with appropriate permissions or use `sudo` (Mac/Linux)
|
|
|
|
---
|
|
|
|
[← Back to Getting Started](getting-started-overview.md)
|