A web application that displays your currently playing Spotify track in real-time. Perfect for streamers and content creators who want to show their music in stream overlays.
Showcasing an amazing music being played.
Clone the repository
git clone https://github.com/Quozul/spotify-currently-playing.git
cd spotify-currently-playing
Set up environment variables
cp .env.example .env
Edit the .env
file with your Spotify credentials.
Start the application
docker compose up -d
The application will be available at http://localhost:3000
http://localhost:3000/
http://localhost:5173/
.env
fileOnce you've cloned the project and installed dependencies with npm install
, start a development server:
npm run dev
# or start the server and open the app in a new browser tab
npm run dev -- --open
You can use the provided Docker Compose to run just the database:
docker compose up db -d
To create a production version of the app:
npm run build
You can preview the production build with npm run preview
.