This repo is for my personal website.
First step is to clone this repo. Run:
git clone https://github.com/ankitskvmdam/ankitskvmdam.github.io.
Note for some reason the above will not work on windows. On Windows you are not allowed to create a folder with
.
at the end. On Windows the following command will work:
git clone https://github.com/ankitskvmdam/ankitskvmdam.github.io. website
The above command means that we want to clone this repository to website folder.
After clone change you directory, Run
cd ankitskvmdam.github.io.
or on Windows
cd website
To install dependencies run:
npm i
# or using yarn
yarn
To run this project in dev mode run:
npm run dev
# or
yarn dev
To build this project run:
npm run build
# or
yarn build
To deploy run:
npm run deploy
# or
yarn deploy
Note:
deploy
script will first build the project and then deploy it as GitHub Pages.
Licensed under the MIT license.