Skip to content

Nuxt 3 codebase for daily Spotify guessing game.

License

Notifications You must be signed in to change notification settings

damofknowledge/top-fives

Repository files navigation

TopFives.fyi

A funemployment project by @DamOfKnowledge

Technology

This project is based on the Nuxt 3 minimal starter project. Look at the nuxt 3 documentation to learn more.

Performance

PageSpeed Insights 2024-02-19

Setup

Make sure to install the dependencies:

# yarn
yarn install

Replace the Spotify client ID and secret in nuxt.config.js with your own values.

Development Server

Start the development server on https://localhost:3000

yarn dev

Testing

Unit tests are located in /tests

yarn test

Pre-commit Hooks

Husky is installed as a dependency to lint the project before every commit.

Production

Build the application for production:

yarn build

Locally preview production build:

yarn preview

Checkout the deployment documentation for more information.