Skip to content

Latest commit

 

History

History
47 lines (30 loc) · 1.06 KB

File metadata and controls

47 lines (30 loc) · 1.06 KB

Setup & Development Guide

Follow these steps to get the portfolio project up and running.

Prerequisites

Ensure the following tools are installed:

Getting Started

  1. Clone the repository:

    git clone <repository-url>
    cd portfolio
  2. Install dependencies:

    bun install
  3. Start the development server:

    bun run dev

    Open http://localhost:5173 to see the result.

Content Management

The project follows a Single Source of Truth pattern. Most content is stored in src/lib/content/ as Markdown files.

For detailed instructions on how to update the CV data, see How to Update Content.

Deployment

The project is configured for Netlify using SvelteKit's static adapter.

  • Build Command: bun run build
  • Publish Directory: build

Pushing to the main branch will automatically trigger a deployment on Netlify if the integration is set up.