Developed with the software and tools below.
This project contains my personal portfolio website. It's build using sveltekit and tailwindcss. The website incorporates a blog section where I can write about my experiences and projects. The blog posts are written in plain markdown and parsed into html on build time. The website is deployed on my own VPS using coolify and can be accessed at marvinvr.ch.
└── portfolio-v2/
├── README.md
├── package-lock.json
├── package.json
├── postcss.config.js
├── src
│ ├── app.d.ts
│ ├── app.html
│ ├── app.scss
│ ├── lib
│ ├── posts
│ └── routes
├── static
│ ├── favicon.png
│ ├── og-image.png
│ ├── robots.txt
│ └── scripts
├── svelte.config.js
├── tailwind.config.js
├── tsconfig.json
└── vite.config.ts
- Clone the portfolio-v2 repository:
$ git clone https://github.com/marvinvr/portfolio-v2
- Change to the project directory:
$ cd portfolio-v2
- Install the dependencies:
$ npm install
Run portfolio-v2 using the command below:
$ npm run build
Run the development server using the command below:
$ npm run dev
This project is protected under the MIT License. For more details, refer to the LICENSE file.