Skip to content

Latest commit

 

History

History
22 lines (20 loc) · 1.22 KB

File metadata and controls

22 lines (20 loc) · 1.22 KB

How to set it up

Clone this Repo

Here is a pretty useful Git Guide.
Run this in your terminal to clone:
git clone https://github.com/itstechnova/diy-react-workshop.git
A folder called diy-react-workshop should appear!

Copy your code from your CodeSandbox into Gallery.jsx and styles.css!

Use your preferred code editor. I use Visual Studio Code!

Run locally

  1. Run npm -v to check if you have npm - our package manager - installed. It should return the version if so.
  2. Run npm install from the diy-react-workshop folder .
  3. Run npm start from the diy-react-workshop folder.
  4. Your application should open up in a web browser on localhost:3000!
  5. When you make changes to the code it will immediately update the browser!

Don't have npm installed?

Install node.js, this should install npm automatically: https://nodejs.org/en/

Check out Github pages to host your site for free!

Note you will need to login or create a GitHub account!

Don't forget to commit and push your changes!

Plugging the Git Guide again!