This was my first react project that I've built.
Since this project was built with React, the first thing you'll need is a Code Editor.
- Make sure you have Node.js installed in your computer, and run:
yarn create react-app
- Then, clone the repository and change into the working directory:
git clone https://github.com/pedro-areal-torres/Website-Portfolio
cd Website-Portfolio
- Install all the necessary dependencies:
yarn install
- Start the development server with:
yarn start
Your site is now running at http://localhost:3000
!
- Finally, if you want to build the application, use:
yarn build
If you are unfamiliar with React, follow their in-depth tutorial for creating a new React App.