GrooveBox is a cutting-edge music app that allows users to create and manage their own playlists, discover new music, and connect with friends who share similar tastes. Our app is designed to provide a seamless and enjoyable music experience!
First, checkout Spotify's documentation to get your own spotify API key and add it to your .env file
NEXT_PUBLIC_ACCESS_TOKEN=YOUR_KEY
Next, run the development server:
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev
Open http://localhost:3000 with your browser to see the result.
If you want to run without installing dependencies, try our dockerfile! Just make sure you have docker installed.
docker build -t GrooveBox .
docker run -p 3000:3000 GrooveBox
The easiest way to deploy your Next.js app is to use the Vercel Platform from the creators of Next.js.
Check out the Next.js deployment documentation for more details.