Skip to content

deleted #81

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions spootify/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@

 
# Pre-requisites ✅
- Make sure you have npm installed https://docs.npmjs.com/downloading-and-installing-node-js-and-npm
- Do NOT push to github. If you do then let me (Vraj) know and I will remove your commit. My email is [email protected]
- Before you run `npm install` make sure that you are in the correct directory. Change it with `cd spootify/`
- Before you start coding make sure to run `npm install`
- You should be able to run a local version of your project with `npm start`
- You can quit your build and return to the terminal by hitting `ctrl+c`. This is the command on Mac and it should be the same on windows
- Add your Spotify client ID & secret to a `.env` file in root using the environment variables `REACT_APP_SPOTIFY_CLIENT_ID` and `REACT_APP_SPOTIFY_CLIENT_SECRET`
- Note. **Never add this type of config to version control. This would usually come from your build server.**

Expand All @@ -23,6 +29,8 @@
 
# Think about 💡
- Taking a look at the Spotify API documentation
- If you have no idea where to start try looking up APIs and how to process them with JavaScript. You can also use
ChatGPT or other tools to teach you where to go
- Do you resolve each API request one after the other or in parallel?
- Where do you make the API requests?
- How much logic do you offload out of the UI components?
Expand Down
Loading