Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
SHELL := /bin/bash
NVM := . ~/.nvm/nvm.sh && nvm use 22 &&
.PHONY: dev build preview sync install clean cf-build
.PHONY: dev build preview sync install clean cf-build help
.DEFAULT_GOAL := help

# Copy needed assets from wavekat-brand submodule → public/
sync:
Expand Down Expand Up @@ -29,3 +30,14 @@ cf-build:
# Remove build artifacts and synced assets
clean:
rm -rf dist/ .astro/ public/logos/

help:
@echo "Usage: make <target>"
@echo ""
@echo " dev Start dev server"
@echo " build Build for production → dist/"
@echo " preview Build and preview locally"
@echo " sync Copy assets from wavekat-brand submodule"
@echo " install Install dependencies"
@echo " cf-build Simulate Cloudflare Pages build (no nvm)"
@echo " clean Remove dist/, .astro/, public/logos/"
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# wavekat.com

[![CI](https://github.com/wavekat/wavekat.com/actions/workflows/ci.yml/badge.svg)](https://github.com/wavekat/wavekat.com/actions/workflows/ci.yml)
[![Release](https://github.com/wavekat/wavekat.com/actions/workflows/release.yml/badge.svg)](https://github.com/wavekat/wavekat.com/actions/workflows/release.yml)

> Give every small business the voice of a big one.

[wavekat.com](https://wavekat.com)
Expand Down
Loading