From d5a2914915c0564dd1e591c46ae57929a02fa16e Mon Sep 17 00:00:00 2001 From: Joders Date: Wed, 7 Jan 2026 05:05:08 +0000 Subject: [PATCH 1/5] Delete variable-categories.ts --- variable-categories.ts | 0 1 file changed, 0 insertions(+), 0 deletions(-) delete mode 100644 variable-categories.ts diff --git a/variable-categories.ts b/variable-categories.ts deleted file mode 100644 index e69de29..0000000 From 594aa96dc71cb10b7f71033d930a233a1d139319 Mon Sep 17 00:00:00 2001 From: Joders Date: Wed, 7 Jan 2026 05:17:26 +0000 Subject: [PATCH 2/5] Update README.md --- README.md | 18 +----------------- 1 file changed, 1 insertion(+), 17 deletions(-) diff --git a/README.md b/README.md index 174f677..9468554 100644 --- a/README.md +++ b/README.md @@ -47,25 +47,9 @@ src/ These themes are applied via html[data-theme="x"] and are used across the site for all gradients, tints, accents, etc. -## DEV NOTES as of 10/29/2025 - -- All social links are dummy values as of now. -- Section layout is controlled via
wrappers. -- Images are outdated and will be replaced. -- UI is mobile-oriented, but device friendly. -## TODO - -- Add links to projects within cards -- Change out experience tab for resume/skills -- Add animations -- more ways to contact -- Deploy site via personal service - - -## View Progress - +## To run on local client: ```bash npm i From 6f7efed5e584a8f59182bb81b7a33fe1e3030015 Mon Sep 17 00:00:00 2001 From: Ben Mosley Date: Wed, 7 Jan 2026 20:18:47 -0600 Subject: [PATCH 3/5] Hooking up Jody with the good shit --- .gitea/workflows/deploy.yaml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .gitea/workflows/deploy.yaml diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml new file mode 100644 index 0000000..e3098b1 --- /dev/null +++ b/.gitea/workflows/deploy.yaml @@ -0,0 +1,23 @@ +name: Deploy Jody's App +on: + push: + branches: + - main + +jobs: + build-and-deploy: + runs-on: vps-host + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: Install and Build + run: | + npm install + npm run build + + - name: Sync Files + run: | + # This clears the old version and puts the new one in + rm -rf /var/www/jody/dist + cp -r dist /var/www/jody/ \ No newline at end of file From 0fb0877a9218996f080b7b2b99bda62b84163959 Mon Sep 17 00:00:00 2001 From: Ben Mosley Date: Wed, 7 Jan 2026 20:25:21 -0600 Subject: [PATCH 4/5] hooking up jody with the good shit --- .gitea/workflows/deploy.yaml | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml index e3098b1..eeebb24 100644 --- a/.gitea/workflows/deploy.yaml +++ b/.gitea/workflows/deploy.yaml @@ -11,13 +11,15 @@ jobs: - name: Checkout uses: actions/checkout@v3 - - name: Install and Build - run: | - npm install - npm run build + - name: Install Dependencies + run: npm install + + - name: Build with Vite + + run: npx vite build - name: Sync Files run: | - # This clears the old version and puts the new one in - rm -rf /var/www/jody/dist - cp -r dist /var/www/jody/ \ No newline at end of file + mkdir -p /var/www/my-app/dist + rm -rf /var/www/my-app/dist/* + cp -r dist/* /var/www/my-app/dist/ \ No newline at end of file From 39507d4bd8d1f522e5bfb3753eb36804bacba21b Mon Sep 17 00:00:00 2001 From: Ben Mosley Date: Wed, 7 Jan 2026 20:26:39 -0600 Subject: [PATCH 5/5] hooking up Jody with the good shit --- .gitea/workflows/deploy.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml index eeebb24..2e95cf1 100644 --- a/.gitea/workflows/deploy.yaml +++ b/.gitea/workflows/deploy.yaml @@ -20,6 +20,6 @@ jobs: - name: Sync Files run: | - mkdir -p /var/www/my-app/dist - rm -rf /var/www/my-app/dist/* - cp -r dist/* /var/www/my-app/dist/ \ No newline at end of file + mkdir -p /var/www/jody/dist + rm -rf /var/www/jody/dist/* + cp -r dist/* /var/www/jody/dist/ \ No newline at end of file