What problem does it solve?
This skill provides a single, reliable way to launch the complete BookStore development stack (API, Web, PostgreSQL, Redis, Azurite) in background mode using Aspire CLI, enabling rapid local demonstrations and tests without manual setup.
Core Features & Use Cases
- Background deployment: Start all services in the background with a single command.
- Observability: Access the Aspire dashboard for logs, traces, and metrics to monitor health and performance.
- Use Case: Spin up the full stack for a demo, then verify endpoints and dashboards before presenting to stakeholders.
Quick Start
Use Aspire to start the full BookStore stack in background:
- Prerequisites Check (optional): Run /doctor to verify tools are installed.
- Start:
cd /home/avazalma/projects/BookStore && aspire run &
- Verify: Check Aspire dashboard for green status and use URLs:
- Dashboard URL: http://localhost:15888
- API URL: http://localhost:5000
- Web URL: http://localhost:5001
- Stop:
pkill -f "aspire run" || true