Email: orginize maddy code structure
diff --git a/apps/maddy/web/Makefile b/apps/maddy/web/Makefile
new file mode 100644
index 0000000..7c054fc
--- /dev/null
+++ b/apps/maddy/web/Makefile
@@ -0,0 +1,17 @@
+clean:
+ rm -f maddy-web
+
+build: clean
+ go build -o maddy-web *.go
+
+image: build
+ docker build --tag=giolekva/maddy-web:latest .
+
+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