38 lines
683 B
Markdown
38 lines
683 B
Markdown
# Quick Start Guide
|
|
|
|
Get up and running with the Wizamart API in 5 minutes.
|
|
|
|
## Prerequisites
|
|
|
|
- Python 3.10+
|
|
- Git
|
|
|
|
## Quick Setup
|
|
|
|
```bash
|
|
# 1. Clone and setup
|
|
git clone <wizamart-repo>
|
|
cd wizamart-repo
|
|
make setup
|
|
|
|
# 2. Start development
|
|
make dev
|
|
```
|
|
|
|
## First API Call
|
|
|
|
```bash
|
|
# Check health
|
|
curl http://localhost:8000/health
|
|
|
|
# View API docs
|
|
open http://localhost:8000/docs
|
|
```
|
|
|
|
## Next Steps
|
|
|
|
- [Database Setup](database-setup.md) - Configure your database
|
|
- [Configuration](configuration.md) - Environment configuration
|
|
- [API Documentation](../api/index.md) - Explore the API
|
|
|
|
*This guide is under development. For detailed instructions, see [Installation](installation.md).* |