diff options
author | Griffin Smith <grfn@gws.fyi> | 2020-06-16T00·44-0400 |
---|---|---|
committer | glittershark <grfn@gws.fyi> | 2020-06-16T00·47+0000 |
commit | ef390b26eebeae2c454c4116edc1d6255eb7dcf3 (patch) | |
tree | 015378f29af84a62d08d49426cfe6c0b7b406c29 /users | |
parent | 61e03e2d9992895aada33f76bf50d4d338d2cc02 (diff) |
feat(gws.fyi): add current source of gws.fyi r/981
This will soon be replaced with a pile of org, but for now- HTML! Change-Id: I54c15d5734fd3662ea4916553e0cd1b32cc0681f Reviewed-on: https://cl.tvl.fyi/c/depot/+/395 Reviewed-by: glittershark <grfn@gws.fyi>
Diffstat (limited to 'users')
-rw-r--r-- | users/glittershark/gws.fyi/.envrc | 1 | ||||
-rw-r--r-- | users/glittershark/gws.fyi/.gitignore | 1 | ||||
-rw-r--r-- | users/glittershark/gws.fyi/Makefile | 22 | ||||
-rw-r--r-- | users/glittershark/gws.fyi/default.nix | 16 | ||||
-rw-r--r-- | users/glittershark/gws.fyi/index.html | 31 | ||||
-rw-r--r-- | users/glittershark/gws.fyi/shell.nix | 9 |
6 files changed, 80 insertions, 0 deletions
diff --git a/users/glittershark/gws.fyi/.envrc b/users/glittershark/gws.fyi/.envrc new file mode 100644 index 000000000000..be81feddb1a5 --- /dev/null +++ b/users/glittershark/gws.fyi/.envrc @@ -0,0 +1 @@ +eval "$(lorri direnv)" \ No newline at end of file diff --git a/users/glittershark/gws.fyi/.gitignore b/users/glittershark/gws.fyi/.gitignore new file mode 100644 index 000000000000..b2be92b7db01 --- /dev/null +++ b/users/glittershark/gws.fyi/.gitignore @@ -0,0 +1 @@ +result diff --git a/users/glittershark/gws.fyi/Makefile b/users/glittershark/gws.fyi/Makefile new file mode 100644 index 000000000000..d483e05d49c6 --- /dev/null +++ b/users/glittershark/gws.fyi/Makefile @@ -0,0 +1,22 @@ +.PHONY: deploy + +deploy: + @`nix-build --no-out-link` + +renew: + @echo Renewing... + @certbot renew \ + --manual \ + --preferred-challenges dns \ + --server https://acme-v02.api.letsencrypt.org/directory \ + --agree-tos \ + --work-dir $(shell pwd)/letsencrypt/work \ + --logs-dir $(shell pwd)/letsencrypt/logs \ + --config-dir $(shell pwd)/letsencrypt/config + +backup: + @tarsnap -cf $(shell uname -n)-letsencrypt-$(shell date +%Y-%m-%d_%H-%M-%S) \ + letsencrypt/ + +open: + $$BROWSER "http://gws.fyi" diff --git a/users/glittershark/gws.fyi/default.nix b/users/glittershark/gws.fyi/default.nix new file mode 100644 index 000000000000..6cf7c977e60b --- /dev/null +++ b/users/glittershark/gws.fyi/default.nix @@ -0,0 +1,16 @@ +with import <nixpkgs> {}; +let + bucket = "s3://gws.fyi"; + distributionID = "E2ST43JNBH8C64"; + website = + runCommand "gws.fyi" { } '' + mkdir -p $out + cp ${./index.html} $out/index.html + ''; +in writeShellScript "deploy.sh" '' + ${awscli}/bin/aws s3 sync ${website}/ ${bucket} + ${awscli}/bin/aws cloudfront create-invalidation \ + --distribution-id "${distributionID}" \ + --paths "/*" + echo "Deployed to http://gws.fyi" +'' diff --git a/users/glittershark/gws.fyi/index.html b/users/glittershark/gws.fyi/index.html new file mode 100644 index 000000000000..7f11bb94974e --- /dev/null +++ b/users/glittershark/gws.fyi/index.html @@ -0,0 +1,31 @@ +<!DOCTYPE html> +<head> + <meta charset="utf-8"> + <meta name="viewport" content="width=device-width, initial-scale=1"> + <meta name="description" content="Griffin has a website now"> + <title>griffin smith</title> +</head> +<body> + my name is griffin ward smith (aka grfn, glittershark, gws) and i'm a software + engineer and musician + + <ul> + <li><a href="https://github.com/glittershark/">github</a></li> + <li><a href="https://sacrosanct.bandcamp.com/">music</a></li> + </ul> + + contact + + <ul> + <li><a href="mailto:root@gws.fyi">root@gws.fyi</a></li> + <li><a href="https://twitter.com/glittershark1">twitter</a></li> + <li><a href="https://keybase.io/glittershark">keybase</a></li> + <li> + <a href="http://keys.gnupg.net/pks/lookup?op=get&search=0x44EF5B5E861C09A7"> + gpg key: 0F11A989879E8BBBFDC1E23644EF5B5E861C09A7 + </a> + <br> + verify with keybase, if you don't trust this site's lack of SSL + </li> + </ul> +</body> diff --git a/users/glittershark/gws.fyi/shell.nix b/users/glittershark/gws.fyi/shell.nix new file mode 100644 index 000000000000..41c77d3b80c1 --- /dev/null +++ b/users/glittershark/gws.fyi/shell.nix @@ -0,0 +1,9 @@ +with import <nixpkgs> {}; +mkShell { + buildInputs = [ + awscli + gnumake + letsencrypt + tarsnap + ]; +} |