You can fork this repo to modify and make changes of your own. Please give me proper credit by linking back to msol98. Thanks!
✔️ Introduction
✔️ About me
✔️ Work Experience
✔️ Testimonials
✔️ Awards
✔️ Contact me
My personal portfolio which represents my resume and technical skills is built using these technologies:
🚀 Angular
🚀 JavaScript
🚀 TypeScript
🚀 HTML
🚀 CSS, Sass
🚀 Angular Material
From your command line, first clone portfolio repository:
# Clone the repository
$ git clone https://github.com/msol98/portfolio
# Move into the repository
$ cd portfolio
# Remove the current origin repository
$ git remote remove origin
After that, you can install the dependencies either using NPM or Yarn.
Using NPM: Simply run the below commands.
# 2022 Update - Fix Dependencies
$ npm audit fix
# Install dependencies
$ npm install
# Start the development server
$ npm start
Using Yarn: Be aware of that you'll need to delete the package-lock.json
file before executing the below commands.
# Install dependencies
$ yarn
# Start the development server
$ yarn start