File tree Expand file tree Collapse file tree 2 files changed +16
-3
lines changed Expand file tree Collapse file tree 2 files changed +16
-3
lines changed Original file line number Diff line number Diff line change 1
1
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2
2
3
- # configs
4
- src /config /config.js
5
-
6
3
# dependencies
7
4
/node_modules
8
5
/.pnp
Original file line number Diff line number Diff line change
1
+ export const authEndpoint = "https://accounts.spotify.com/authorize" ;
2
+
3
+ // Replace with your app's client ID, redirect URI and desired scopes
4
+ export const clientId = process . env . REACT_APP_SPOTIFY_CLIENT_ID ;
5
+ export const redirectUri = process . env . REACT_APP_DOMAIN + "/redirect" ;
6
+ export const scopes = [
7
+ "playlist-read-private" ,
8
+ "user-top-read" ,
9
+ "user-read-currently-playing" ,
10
+ "user-read-playback-state" ,
11
+ "user-library-read" ,
12
+ "user-follow-read" ,
13
+ "playlist-modify-private" ,
14
+ "playlist-modify-public" ,
15
+ "playlist-read-collaborative" ,
16
+ ] ;
You can’t perform that action at this time.
0 commit comments