Initial commit

This commit is contained in:
Cooper Dalrymple
2025-10-29 11:52:55 -05:00
parent 4acaaf406e
commit e3bb6e6039
17 changed files with 5761 additions and 3 deletions

21
Makefile Normal file
View File

@@ -0,0 +1,21 @@
all: install
reinstall: clean install
clean: clean-composer clean-npm
clean-composer:
rm -rf vendor/* || true
rm composer.lock || true
composer clearcache
clean-npm:
rm -rf node_modules/* || true
rm package-lock.json || true
install:
composer install
npm install
package: install
gulp package