Skip to content

Latest commit

 

History

History
44 lines (38 loc) · 939 Bytes

README.md

File metadata and controls

44 lines (38 loc) · 939 Bytes

nmarklund10

Rearaoke

Live Website

This is a karaoke web application that lets you upload a .lrc file and an audio file. Once the user presses play, the lyrics will be synchronously displayed on the screen to sing along to!

App Screenshot

Dev Setup

Docker

docker compose build
docker compose up # connect at http://localhost:3001

Install dependencies

yarn install

Run Development Mode

yarn dev

Create Production Build

yarn build

Run Production Mode

On Remote Server

yarn build
yarn global add serve
serve -s dist

On Local Machine

yarn preview

On Heroku

yarn start