diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3207d4d --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +.DS_Store +.idea +*.log +tmp/ + +*.envrc diff --git a/build.sh b/build.sh index fb3765f..c235b23 100755 --- a/build.sh +++ b/build.sh @@ -1,2 +1,2 @@ -docker build . -t git.howdoicomputer.lol/howdoicomputer/blog:4 -docker push git.howdoicomputer.lol/howdoicomputer/blog:4 +docker build . -t git.howdoicomputer.lol/howdoicomputer/blog:5 +docker push git.howdoicomputer.lol/howdoicomputer/blog:5 diff --git a/deploy/.envrc b/deploy/.envrc deleted file mode 100644 index 957c66b..0000000 --- a/deploy/.envrc +++ /dev/null @@ -1,3 +0,0 @@ -export VAULT_ADDR="http://megamind:8200" -export NOMAD_ADDR="http://megamind:4646" -export VAULT_TOKEN="hvs.vYkHHcWub5i6xsJWifKSKrbD" diff --git a/deploy/job.nomad b/deploy/job.nomad index 619d569..e369560 100644 --- a/deploy/job.nomad +++ b/deploy/job.nomad @@ -33,7 +33,7 @@ job "blog" { driver = "docker" config { - image = "git.howdoicomputer.lol/howdoicomputer/blog:4" + image = "git.howdoicomputer.lol/howdoicomputer/blog:5" ports = ["http"] } diff --git a/hugo.toml b/hugo.toml index 0006017..a4aaa64 100644 --- a/hugo.toml +++ b/hugo.toml @@ -10,6 +10,10 @@ palette = "tokyo-night-dark" [params.about] title = "howdoicomputer's blog" description = "A dumping ground for ideas related to making, tomfoolery, and tomfoolery related to making" +logo = "favicon.ico" + +[params.meta] + favicon = false [menu] [[menu.main]] diff --git a/static/favicon-16x16.png b/static/favicon-16x16.png new file mode 100644 index 0000000..7087bb7 Binary files /dev/null and b/static/favicon-16x16.png differ diff --git a/static/favicon-32x32.png b/static/favicon-32x32.png new file mode 100644 index 0000000..3f3b65d Binary files /dev/null and b/static/favicon-32x32.png differ diff --git a/static/favicon.ico b/static/favicon.ico new file mode 100644 index 0000000..bbbcdd9 Binary files /dev/null and b/static/favicon.ico differ