Echo is a music dashboard powered by Spotify Web API.
- Spotify Authentication: Secure login using Spotify credentials
- Spotify Insights:
- Recently Played Tracks
- Personal Album Library
- Latest Releases
- Responsive Design: Fully responsive layout that works across devices
- Modern UI: Clean, intuitive user interface
-
Frontend:
- Next.js 14
- TypeScript
- shadcn/ui
- Tailwind CSS
-
Authentication:
- Spotify OAuth
- Next.js Authentication (Authjs v5)
- Node.js (v18+ recommended)
- npm
- Spotify Developer Account
-
Clone the repository
git clone https://github.com/DevanceJ/echo.git cd echo
-
Install dependencies
npm install
-
Set up environment variables Create a
.env
file in the root directory with the following:SPOTIFY_CLIENT_ID=your_spotify_client_id SPOTIFY_CLIENT_SECRET=your_spotify_client_secret NEXTAUTH_SECRET=your_nextauth_secret
AUTH_SECRET
npx auth secret
SPOTIFY: Go to https://developer.spotify.com/documentation/web-api
-
Run the development server
npm run dev
-
Open http://localhost:3000 in your browser
Echo uses Spotify's OAuth 2.0 for authentication:
- Users are redirected to Spotify's login page
- After successful authentication, users are returned to the application
- A session is created and maintained
The application is fully responsive and provides an optimal viewing experience across:
- Mobile devices
- Tablets
- Desktop computers
Disclaimer: No data is stored beyond the current session.