Skip to content

chapmankyle/website

Repository files navigation

Personal Website 📰

license: GPL-3.0 Release

Official website is available at https://kylechapman.dev/ 🎉

This repository serves as the source code for my personal website that accompanies my CV 📝

Setup 🚀

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 website

You need to have Node.js installed in order to compile from the source code.

Building 🔨

You need to install all the dependencies first, so type the following into the terminal of your choice:

# install dependencies
npm install

🔧 Development Build

# start the development build
npm run dev

The development version is now accessible at http://localhost:3000.

💻 Production Build

# build the production files
npm run build

This 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 start

The production version is now accessible at http://localhost:3000.