Let's setup locally. First, you need to download this source code
git clone https://github.com/EssiJunior/my-portfolio.git
# Open a terminal and paste this code to download this codeThis code was written using React - JavaScript library. Below are the instructions to follow to run our application locally.
Make sure you have node 16 or above installed on your machine. Take a look at the official guide for installation. After installation, run the following command in your terminal for a double check.
node --versionOpen this code in your favorite code editor. We recommend you VS Code.
Install the project's dependencies found in the package.json file
npm install --legacy-peer-depsThe command will take a while depending upon your internet speed.
Launch server
npm run devAvailable at localhost:5173
That's it! 🥂
npm run buildBuilds the app for production to the build folder.
It correctly bundles React in production mode and optimizes the build for the best performance.
The build is minified and the filenames include the hashes.
Your app is ready to be deployed!
See the section about deployment for more information.
To learn React, check out the React documentation.