Marketplace dev-servers
Start the backend (FastAPI/uvicorn) and frontend (Vite) development servers. Use when user mentions "start dev", "run servers", "launch app", "start the app", or needs to run the application locally.
install
source · Clone the upstream repo
git clone https://github.com/aiskillstore/marketplace
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/aiskillstore/marketplace "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/applelamps/dev-servers" ~/.claude/skills/aiskillstore-marketplace-dev-servers && rm -rf "$T"
manifest:
skills/applelamps/dev-servers/SKILL.mdsource content
Development Servers
Instructions
-
Check if dependencies are installed:
- Backend: Look for
or ask user about Python environmentbackend/venv/ - Frontend: Check if
existsfrontend/node_modules/
- Backend: Look for
-
Install dependencies if missing:
- Backend:
cd backend && pip install -r requirements.txt - Frontend:
cd frontend && npm install
- Backend:
-
Start servers (recommend running in separate terminals or background):
- Backend:
(runs on http://localhost:8000)cd backend && uvicorn main:app --reload - Frontend:
(runs on http://localhost:5173)cd frontend && npm run dev
- Backend:
-
Verify
file exists in.env
withbackend/
setOPENAI_API_KEY
Examples
- "Start the dev servers"
- "Run the app locally"
- "Launch backend and frontend"
Guardrails
- Never expose or log the OPENAI_API_KEY
- Confirm with user before installing dependencies
- Warn if ports 8000 or 5173 are already in use