Official website is available at https://kylechapman.dev/ 🎉
This repository serves as the source code for my personal website that accompanies my CV 📝
Clone the repository and navigate to the website directory.
# clone the repo
git clone [email protected]:chapmankyle/website.git
# navigate to the `website` directory
cd websiteYou need to have Node.js installed in order to compile from the source code.
You need to install all the dependencies first, so type the following into the terminal of your choice:
# install dependencies
npm install# start the development build
npm run devThe development version is now accessible at http://localhost:3000.
# build the production files
npm run buildThis will build the relevant files into the .next directory. To serve these
files, you can run the following command.
# run as if it was production
npm run startThe production version is now accessible at http://localhost:3000.