Skip to content

tylergaw/wax

Repository files navigation

Wax Netlify Status

A record collection viewer with data from Discogs.

  • Production: wax.tylergaw.com
  • Staging: Every pull request gets a preview deploy URL

Important

Fetching, enriching, and uploading collection data happens in github.com/tylergaw/wax-tracks.

Technology overview

Local setup

Install dependencies

yarn

Start development server

yarn start

The site will be available at http://localhost:3000

Preview production

Do a production build and local server to mimic a production environment. Note that there's no reload when files are changed.

yarn preview

Build for production

Generates static content into the dist directory that can be served using any static content hosting service.

yarn build

Tests

This project can have a little tests, as a snack. Run using vitest with

yarn test

Deployment

To production

This site is hosted on Netlify. Anything merged into the main branch is deployed to production.

To staging

This site uses Netlify preview builds. To see any branch in a live environment, push the branch to the remote and open a pull request.