Moodmix is a webapp that allows users to find media based on the mood of the music they are listening to. It is built using SvelteKit, ChatGPT, and the MusicBrainz API.
Install the dependencies...
cd moodmix
pnpm install...then start Vite:
pnpm devNavigate to localhost:5178. You should see your app running. Edit a component file in src, save it, and reload the page to see your changes.
To create an optimized version of the app:
pnpm buildYou can run the newly built app with pnpm start. Navigate to localhost:3000. You should see your app running.
This project is set up to deploy to Vercel. If you haven't already done so, follow the instructions to deploy to Vercel.
To run the test suite:
pnpm testTo run the unit tests:
pnpm test:unitTo run the linter:
pnpm lintTo run the formatter:
pnpm formatThis project was created with SvelteKit. SvelteKit is a framework for building web applications of all sizes, with a beautiful development experience and flexible deployment options.