initial commit

This commit is contained in:
tumillanino
2025-11-12 18:34:08 +11:00
commit 2fed8f268e
585 changed files with 161655 additions and 0 deletions

27
Makefile Normal file
View File

@@ -0,0 +1,27 @@
# Makefile for Miasma OS Installer
.PHONY: build run test clean fmt vet release install
build:
go build -o miasma-installer main.go
run: build
sudo ./miasma-installer
test:
go test ./...
clean:
rm -f miasma-installer
fmt:
go fmt ./...
vet:
go vet ./...
release: clean
go build -ldflags="-s -w" -o miasma-installer main.go
install: build
sudo cp miasma-installer /usr/local/bin/