Installation
tip
After cloning the repository and try to developing or modifying the app, you should read about configuration and environment variables.
Installation
Get started by clone modern portfolio repository.
git clone https://github.com/Deri-Kurniawan/modern-portfolio.git
Install dependencies using npm.
cd modern-portfolio
npm install
or using yarn.
cd modern-portfolio
yarn
Development
Start the development server with npm
npm run start
or using yarn.
yarn start
your server will be running on http://localhost:3000
Build & Deployment
Build the app with npm
npm run build
or using yarn.
yarn build
To deploy the app, you can use Vercel.
Linting & Formatting
Lint the app with npm
npm run lint