From 726d91e433abf791ecb79b023cd3385965dc345b Mon Sep 17 00:00:00 2001 From: baalajimaestro Date: Sun, 14 Jul 2024 20:11:00 +0530 Subject: [PATCH] Rebrand Signed-off-by: baalajimaestro --- .woodpecker/woodpecker.yml | 1 + README.md | 106 +------------------------------------ package.json | 3 +- 3 files changed, 4 insertions(+), 106 deletions(-) diff --git a/.woodpecker/woodpecker.yml b/.woodpecker/woodpecker.yml index 95138fa..966c24b 100644 --- a/.woodpecker/woodpecker.yml +++ b/.woodpecker/woodpecker.yml @@ -2,6 +2,7 @@ when: - event: push steps: + - name: - name: Deploy image: node:20-alpine commands: diff --git a/README.md b/README.md index 5e95f17..ea2751a 100644 --- a/README.md +++ b/README.md @@ -1,105 +1,3 @@ -# Vitesse theme for Astro +# Personal Website for baalajimaestro -A minimal, SEO-friendly portfolio and blog theme for Astro, supports Vue and UnoCSS. - -[![Netlify Status](https://api.netlify.com/api/v1/badges/d5bae292-6116-4c52-af4b-05eadedccc60/deploy-status)](https://app.netlify.com/sites/kevinwong865/deploys) - -## Preview - -![Preview Image](./public/preview.jpg) - -## Features - -- 100 / 100 Lighthouse performance. -- Responsive. -- SEO-friendly. -- Light / Dark Theme. -- Markdown support. -- MDX (components in your markdown) support. -- Vue SFC component support. -- Auto generated sitemap and RSS Feed VueUse & Lodash support. -- Use the UnoCSS for style, it's fast. - -## Lighthouse Performance - -![Lighthouse Performance Image](./public/lighthouse.jpg) - -## Quick Start - -[![Deploy to Netlify Button](https://www.netlify.com/img/deploy/button.svg)](https://app.netlify.com/start/deploy?repository=https://github.com/kevinwong865/astro-theme-vitesse) - -Click this button, it will create a new repo for you that looks exactly like this one, and sets that repo up immediately for deployment on Netlify. - -If you just want to develop locally, you can [create a repo](https://github.com/kevinwong865/astro-theme-vitesse/generate) from this template on GitHub. - -## Usage - -Just run and visit http://localhost:1977. - -```bash -npn run dev -``` - -> Node.js version 18 or higher is required for this project. - -To build the App, you can run: - -```bash -npm run build -``` - -You will then see the `dist` folder generated for publishing, which you can preview locally with the following command. - -```bash -npm run preview -``` - -## Use pnpm / yarn - -If you want to use pnpm or yarn as a package management tool, please refer to the following steps. - -> If `preinstall` exists in `scripts`, remove it first. - -### pnpm - -Replace `"pre-commit": "npx lint-staged"` in package.json with `"pre-commit": "pnpm lint-staged"`. - -And replace `"*": "npm run lint:fix"` with `"*": "pnpm lint:fix"`. - -Like this: - -```json -{ - // ... - "simple-git-hooks": { - "pre-commit": "pnpm lint-staged" - }, - "lint-staged": { - "*": "pnpm lint:fix" - } -} -``` - -### yarn - -Replace `"pre-commit": "npx lint-staged"` in package.json with `"pre-commit": "yarn lint-staged"`. - -And replace `"*": "npm run lint:fix"` with `"*": "yarn lint:fix"`. - -Like this: - -```json -{ - // ... - "simple-git-hooks": { - "pre-commit": "yarn lint-staged" - }, - "lint-staged": { - "*": "yarn lint:fix" - } -} -``` - -## License - -[MIT License](./LICENSE) © 2024-PRESENT [Kevin Wong](https://github.com/kevinwong865) +Written in Astro, forked from https://github.com/kevinwong865/astro-theme-vitesse diff --git a/package.json b/package.json index 8624ca7..a462a38 100644 --- a/package.json +++ b/package.json @@ -1,9 +1,8 @@ { - "name": "astro-theme-vitesse", + "name": "personal-website", "type": "module", "version": "1.1.0", "scripts": { - "prepare": "simple-git-hooks", "dev": "astro dev --host", "build": "astro build", "preview": "astro preview",