Skip to content

Commit

Permalink
Add README
Browse files Browse the repository at this point in the history
  • Loading branch information
kai-wei-mo committed Apr 7, 2022
1 parent 5957192 commit 46c0fa0
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1 +1,30 @@
# spotify-rewind
This React and Express app uses the Spotify Web API to display a Spotify user's top tracks, playlists, and artists.

Check it out at [https://spotifyrewind.dev/](https://spotifyrewind.dev/)! 🎉🎉🎉

![OG image preview](./client/public/og.png)


## Local Development
- add your Spotify Developer keys to `./client/.env` and `./server/.env`
### With Docker
```Bash
docker build -t kaiweimo/spotify-rewind-frontend ./client
docker run -d -p 3000:3000 kaiweimo/spotify-rewind-frontend

docker build -t kaiweimo/spotify-rewind-backend ./server
docker run -d -p 8888:8888 kaiweimo/spotify-rewind-backend
```

### With Node
```Bash
cd client
npm install
npm start
```
```Bash
cd server
npm install
npm start
```

0 comments on commit 46c0fa0

Please sign in to comment.