Maddy account management UI
diff --git a/apps/maddy/Makefile b/apps/maddy/Makefile
new file mode 100644
index 0000000..38a2eaf
--- /dev/null
+++ b/apps/maddy/Makefile
@@ -0,0 +1,18 @@
+build:
+ go1.16 build -o maddy-web *.go
+
+clean:
+ rm -f maddy-web
+
+image: clean build
+ docker build --tag=giolekva/maddy-web .
+
+push: image
+ docker push giolekva/maddy-web:latest
+
+
+push_arm64: export GOOS=linux
+push_arm64: export GOARCH=arm64
+push_arm64: export CGO_ENABLED=0
+push_arm64: export GO111MODULE=on
+push_arm64: push