{{ if .IsNew }}
- A
+ A
{{ end }}
{{ if .IsDelete }}
- D
+ D
{{ end }}
{{ if not (or .IsNew .IsDelete) }}
- M
+ M
{{ end }}
- {{ if .Name.Old }}
- {{ .Name.Old }}
- {{ if .Name.New }}
- →
- {{ .Name.New }}
- {{ end }}
- {{ else }}
- {{ .Name.New }}
- {{- end -}}
+ {{ .Name.New }}
{{- range .Lines -}}
{{- if eq .Op.String "+" -}}
-
{{ .Op.String }}{{ .Line }}
+
{{ .Op.String }}{{ .Line }}
{{- end -}}
{{- if eq .Op.String "-" -}}
-
{{ .Op.String }}{{ .Line }}
+
{{ .Op.String }}{{ .Line }}
{{- end -}}
{{- if eq .Op.String " " -}}
-
{{ .Op.String }}{{ .Line }}
+
{{ .Op.String }}{{ .Line }}
{{- end -}}
{{- end -}}
diff --git a/scripts/appview.sh b/scripts/appview.sh
new file mode 100755
index 00000000..045fc26e
--- /dev/null
+++ b/scripts/appview.sh
@@ -0,0 +1,26 @@
+#!/bin/bash
+
+# Variables
+BINARY_NAME="appview"
+BINARY_PATH=".bin/app"
+SERVER="95.111.206.63"
+USER="appview"
+
+# SCP the binary to root's home directory
+scp "$BINARY_PATH" root@$SERVER:/root/"$BINARY_NAME"
+
+# SSH into the server and perform the necessary operations
+ssh root@$SERVER <