This repository contains the term project for my MET CS 601 (Web Application Development) course term project. This project is a personal portfolio site that functions as a personal website / resume. It included information related to my education, professional life, and some fun personal facts.
This project is meant to develop and showcase skills using:
- HTML5
- CSS
- JavaScript
- Vue.js
- Git
This code is deployed via Netlify at the following link: https://amazing-monstera-cd7139.netlify.app/
Please follow these instructions and run the relevant commands to properly configure and run this application!
- Have
npm
properly installed and configured on your computer
- Vue Router: used to handle page routing and navigation
npm install vue-router@next --save
- Download the source code
- Download dependencies
npm install
- Run a code linter to validate code (Optional)
npm run lint
- Build the project
#Runs a 'dev' build
npm run dev
#Runs a 'prod' build
npm run build