Skip to content

Latest commit

 

History

History
52 lines (32 loc) · 1.11 KB

README.md

File metadata and controls

52 lines (32 loc) · 1.11 KB

Personal Website

This was my first react project that I've built.

See the site live at:

Build

Since this project was built with React, the first thing you'll need is a Code Editor.

  1. Make sure you have Node.js installed in your computer, and run:
yarn create react-app
  1. Then, clone the repository and change into the working directory:
git clone https://github.com/pedro-areal-torres/Website-Portfolio
cd Website-Portfolio
  1. Install all the necessary dependencies:
yarn install
  1. Start the development server with:
yarn start

Your site is now running at http://localhost:3000!

  1. Finally, if you want to build the application, use:
yarn build

Deploy

Deploy to Netlify

Learning React

If you are unfamiliar with React, follow their in-depth tutorial for creating a new React App.