Create wpcarro.dev/goals

Create a simple React app to define my goals. See the goals/README.md for more
context.
This commit is contained in:
William Carroll 2020-03-25 16:30:22 +00:00
parent 265b691c9b
commit 89cd77a64b
9 changed files with 3705 additions and 21 deletions

7
website/goals/shell.nix Normal file
View file

@ -0,0 +1,7 @@
let
pkgs = import <nixpkgs> {};
in pkgs.mkShell {
buildInputs = with pkgs; [
nodejs
];
}