From dd9788fa7311ad7722f68f30f31c6aa472c99f07 Mon Sep 17 00:00:00 2001 From: William Carroll Date: Wed, 18 Mar 2020 21:29:11 +0000 Subject: Create line chart of UK confirmed corona virus cases I was having trouble tracking the growth of corona virus cases in the UK. Thankfully someone is publishing some daily COVID data as JSON. I downloaded that data manually and plotted it using the chart.js library as a programming exercise with Mimi. Now I'm attempting to deploy to https://wpcarro.dev/covid-uk. TODO(wpcarro): Prefer the live API data instead my soon-to-be-stale downloaded. --- nixos/socrates/configuration.nix | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'nixos') diff --git a/nixos/socrates/configuration.nix b/nixos/socrates/configuration.nix index 09e5afb09b92..ba2e20bc1092 100644 --- a/nixos/socrates/configuration.nix +++ b/nixos/socrates/configuration.nix @@ -171,6 +171,11 @@ in { enableACME = true; root = briefcase.blog; }; + "wpcarro.dev" = { + addSSL = true; + enableACME = true; + root = briefcase.covid-uk; + }; }; }; -- cgit 1.4.1