Skip to content

Commit

Permalink
Edits
Browse files Browse the repository at this point in the history
  • Loading branch information
grellyd committed Aug 29, 2023
1 parent 65f1820 commit 8cdb530
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 341 deletions.
13 changes: 10 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ define deploy-dev
cp -r ./public /var/http && \
go build grellyddotcom.go && \
cp grellyddotcom /var/http/ && \
cp -r ./pages/templates /var/http/ && \
cp -r ./templates /var/http/ && \
ls /var/http/ && \
go version && \
systemctl restart grellyddotcom.service && \
Expand All @@ -48,8 +48,15 @@ define deploy-prd
git pull origin prd -f && \
git submodule update --init --recursive && \
hugo && \
cp -rf public /var/http && \
go install && \
rm -f /var/http/grellyddotcom && \
rm -rf /var/http/public && \
rm -rf /var/http/templates && \
cp -r ./public /var/http && \
go build grellyddotcom.go && \
cp grellyddotcom /var/http/ && \
cp -r ./templates /var/http/ && \
ls /var/http/ && \
go version && \
systemctl restart grellyddotcom.service && \
systemctl status grellyddotcom.service
endef
Expand Down
2 changes: 1 addition & 1 deletion grellyddotcom.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import (
)

const (
AddrHTTP = ":80"
AddrHTTP = ":3080"
AddrHTTPS = ":443"
)

Expand Down
163 changes: 0 additions & 163 deletions pages/templates/qrcode.tmpl

This file was deleted.

172 changes: 0 additions & 172 deletions pages/templates/qrgen.tmpl

This file was deleted.

8 changes: 6 additions & 2 deletions static/css/grellyd.css
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,12 @@ video {
}

form {
padding: 10px;
list-style-type: none;
margin: 10px;
}

input#link.inputBox {
margin: 10px;
width: 80%;
}

ul .formList {
Expand Down

0 comments on commit 8cdb530

Please sign in to comment.