Skip to content

simonmayr/portfolio

Repository files navigation

Portfolio

This is the repo for the simonmayr.dev website.

Developing

Once you've cloned this project and installed dependencies with pnpm install, start a development server:

pnpm run dev

# or start the server and open the app in a new browser tab
pnpm run dev -- --open

Building

To create a production version of your app:

docker compose up -d

To deploy changes run:

docker compose build
docker compose up -d

# or to do it in one go:
docker compose up --build -d