guitar Svelte Themes

Guitar

Guitar practice web app — tuner, AI-generated backing tracks, and guided practice sessions. Built with SvelteKit, Go, Tone.js, and Claude API.

Guitar

Guitar practice web app — tuner, AI-generated backing tracks, and guided practice sessions.

Live at guitar.cartergrove.me

Stack

Layer Technology
Frontend SvelteKit, TypeScript, Tailwind CSS v4
Audio Web Audio API, Tone.js
Backend Go (Chi router)
AI Claude API
Database PostgreSQL
Infra Digital Ocean, Terraform, GitHub Actions

Local Development

Prerequisites

Setup

# Clone the repo
git clone https://github.com/grovecj/guitar.git
cd guitar

# Install frontend dependencies
cd frontend && npm install && cd ..

# Run both frontend and backend in dev mode
make dev

Individual commands

make dev-frontend   # SvelteKit dev server only
make dev-backend    # Go backend only
make build          # Production build (both)
make clean          # Remove build artifacts

Project Structure

guitar/
├── frontend/          # SvelteKit app
│   ├── src/
│   │   ├── routes/    # Pages and layouts
│   │   ├── lib/       # Shared components and utilities
│   │   └── app.css    # Tailwind + design tokens
│   └── ...
├── backend/           # Go API server
│   ├── cmd/server/    # Entrypoint
│   └── internal/      # Application code
│       └── handler/   # HTTP handlers
├── infra/             # Terraform (Digital Ocean + GitHub)
├── Makefile
└── README.md

Top categories

Loading Svelte Themes