Playing around with options for base structure and navigation

This commit is contained in:
2025-07-03 23:50:20 -07:00
parent 65e05066ea
commit d515e581b5
26 changed files with 1075 additions and 398 deletions

View File

@@ -1,13 +1,9 @@
# Makefile for caperren.com
DEV_WEBSITE_CONTENT_PATH := "/home/caperren/obsidian/00002 - Projects/Websites/caperren-com"
.PHONY: \
install \
fix \
astro_upgrade \
clean_dev_website_content \
update_dev_website_content \
build \
dev
@@ -22,15 +18,9 @@ fix:
astro_upgrade:
npx @astrojs/upgrade
clean_dev_website_content:
find src/content -mindepth 1 ! -name 'config.ts' ! -name '.' -exec rm -rvf {} +
update_dev_website_content: clean_dev_website_content
cp -rv $(DEV_WEBSITE_CONTENT_PATH)/* src/content
build: update_dev_website_content
build:
npm run build
dev: update_dev_website_content
dev:
npm run dev