Skip to content

Commit

Permalink
Changing port
Browse files Browse the repository at this point in the history
  • Loading branch information
lkameya committed Nov 4, 2019
1 parent 8fdab1d commit 5f9e35e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ A custom Spotify Playlist manager.
* **Fast:** You can search songs and add to your playlist in one click.
* **Easy:** Sometimes you just want to build your playlist in Spotify without browsing other songs or playlists.

[www.sagaplaylist.lkameya.com](http://sagaplaylist.lkameya.com/).
[sagaplaylist.lkameya.com](http://sagaplaylist.lkameya.com/).

2 changes: 1 addition & 1 deletion config/prod.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module.exports = {
spotifyClientID: process.env.SPOTIFY_CLIENT_ID,
spotifyClientSecret: process.env.SPOTIFY_CLIENT_SECRET, // Your secret
baseURL: 'https://www.sagaplaylist.lkameya.com:5000'
baseURL: 'https://sagaplaylist.lkameya.com'
}
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ app.get('/api/callback', function (req, res) {
});

// we can also pass the token to the browser to make requests from there
res.redirect('https://www.sagaplaylist.lkameya.com/#' +
res.redirect('https://sagaplaylist.lkameya.com/#' +
querystring.stringify({
access_token: access_token,
refresh_token: refresh_token,
Expand Down

0 comments on commit 5f9e35e

Please sign in to comment.