This repository contains the source code for my personal portfolio website. Follow the instructions below to get started with cloning the repo, running it locally, and making changes.
First, clone the repository to your local machine using the following command:
git clone https://github.com/dikshithvishnu/dikshith-portfolio.git
Once the repository is cloned, navigate into the project directory:
cd dikshith-portfolio
Before running the project, make sure to install all the necessary dependencies. You can do this by running:
npm install
or if you're using yarn
:
yarn install
To view the portfolio locally, start the development server:
npm run dev
or if you're using yarn
:
yarn dev
The application should now be running on http://localhost:3000
.
To update the content on the portfolio, start by editing the file located at:
lib/constants/index.ts
This file contains the main constants and data used across the portfolio. Modify this file to reflect the changes you want to make.
If you're ready to deploy your changes, you can build the project for production by running:
npm run build
or if you're using yarn
:
yarn build
This will create an optimized production build in the out
directory.
You can deploy the built project to your preferred hosting service. For example, if you're using Vercel, Netlify, or GitHub Pages, follow their specific deployment instructions.
Feel free to reach out if you have any questions or encounter any issues.
Happy coding!