Skip to content

DAWZayas/REACT-RMDB

Repository files navigation

FIRST STEPS

  • Install google-chrome
  • Install VS-Code
  • Install React Dev Tools
  • Install node
  • Install yarn
sudo npm install -g yarn
  • Install create-react-app
sudo npm install -g create-react-app
  • Create app
yarn create react-app <project-name> --typecript
  • Start the app
cd <project-name>
yarn start

SECOND STEPS

  • Create a README.md with project description
  • Install git
  • Create a GitHub repository
  • Fetch repository
git remote add origin <github-repo-url>
git fetch origin
  • Push the first commit:
git add .
git commit -m "Updated Readme.md with project description"
git push origin master