Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
81 changes: 65 additions & 16 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,17 +1,66 @@
# See https://help.github.com/articles/ignoring-files for more about ignoring files.
#
# If you find yourself ignoring temporary files generated by your text editor
# or operating system, you probably want to add a global ignore instead:
# git config --global core.excludesfile '~/.gitignore_global'

# Ignore bundler config.
/.bundle

# Ignore the default SQLite database.
/db/*.sqlite3
/db/*.sqlite3-journal

# Ignore all logfiles and tempfiles.
/log/*
!/log/.keep
# Node.js
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
lerna-debug.log*

# Vite
dist/
.vite/

# Build artifacts
*.tgz
*.tar.gz

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Coverage directory used by tools like istanbul
coverage/
*.lcov

# nyc test coverage
.nyc_output

# Dependency directories
jspm_packages/

# TypeScript v1 declaration files
typings/

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env
.env.test
.env.local
.env.development.local
.env.test.local
.env.production.local

# Stores VSCode versions used for testing VSCode extensions
.vscode-test

# Logs
logs
*.log

# tmp
/tmp
57 changes: 0 additions & 57 deletions Gemfile

This file was deleted.

201 changes: 0 additions & 201 deletions Gemfile.lock

This file was deleted.

1 change: 0 additions & 1 deletion Procfile

This file was deleted.

27 changes: 24 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,28 @@ follow along better.

## Get Started

- `bundle`
- `rake db:create db:migrate db:setup`
- `rails s`
This is now a modern JavaScript application built with Vite:

- `npm install` - Install dependencies
- `npm run dev` - Start development server
- Browse to http://localhost:3000/

## Build for Production

- `npm run build` - Build for production
- `npm run preview` - Preview production build

## Features

- Client-side song display with colorized chord progressions
- Simple hash-based routing for navigation
- Responsive design with modern CSS
- Fast development with Vite hot module replacement

## Song Data

Songs are stored in `src/data/songs.json` and include:
- "You Are My Sunshine" by Johnny Cash
- "La Mer" by Charles Trenet

Each song includes chord progressions that are parsed and colorized for easy reading while playing music.
6 changes: 0 additions & 6 deletions Rakefile

This file was deleted.

Empty file removed app/assets/images/.keep
Empty file.
Loading