Skip to content

engelde/portfolio

Repository files navigation

David Engel's Portfolio Site

This is my portfolio site! The site is a work in progress but feel free to look around.

Preview

Getting Started

Install dependencies:

pnpm i

Development

Run the development server:

pnpm dev

Open http://localhost:3000 in your browser.

Deployment

Build and run the production server:

pnpm build
pnpm start

Build and run with Docker:

docker build -t engelde/portfolio .
docker run --name portfolio -p 80:3000 -d engelde/portfolio