-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5957192
commit 46c0fa0
Showing
1 changed file
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
``` |