- You get to play with a more complex structure of JSON so you can get more comfortable with it.
- You get to see others approach and learn from it.
- You'll improve your creativity skills and confidence.
Back to Table of contents
- Click the Fork button. This will create a copy of the project on your own profile.
- Click the Clone or download button and copy the path to the project.
- On your local machine, open your favourite command line and clone the project:
git clone https://github.com/YOURUSERNAME/collection-playground.git
- Change into your project:
cd collection-playground
- Install dependencies:
npm i
- Open with Visual Studio Code (optional) or your favourite editor:
code .
- Start your local server:
npm start
- Create a new branch using your github username, like:
git checkout -b yourGithubUsernameHere
. What I did was:git checkout -b marianzburlea
- In the
src
folder you want to create your own folder. Name it using your github username, like:yourGithubUsername
. I created a folder marianzburlea as marianzburlea is the username I have on GitHub. - Replicate the structure of files and content you can find in
src/codetapacademy
and start working on implementing your own idea and own interface that feeds of the content of the file located atsrc/_data/sample.json
- Once you have at least one or more commits, feel free to make a push, like:
git push -u origin yourGithubUsernameHere
. What I did was:git push -u origin marianzburlea
. Visit your repositiory on your own profile on GitHub where you should see a button in a yellow box where you can start to create a PR (Pull Request) to the original project. Feel free to ask for reviews from the Students of CodeTap Academy.
For any other questions join the chat on https://codetap.academy (click the big chat button if you're not on our chat server yet).
Back to Table of contents