Skip to content

Latest commit

 

History

History
34 lines (23 loc) · 643 Bytes

README.md

File metadata and controls

34 lines (23 loc) · 643 Bytes

Bardic Beatz

Setup

Install dependencies:

pnpm i

Create a .env file in the root directory with the following contents:

SPOTIFY_CLIENT_ID=<your spotify client id>
SPOTIFY_CLIENT_SECRET=<your spotify client secret>
SPOTIFY_CALLBACK_URL="http://localhost:3000/auth/spotify/callback"

You can get your Spotify client ID and secret by creating a Spotify app here.

Run

Spin up the Express server as a dev server:

npm run dev

Or build your app for production and run it:

npm run build
npm run start