diff --git a/.envrc b/.envrc deleted file mode 100644 index 1d953f4..0000000 --- a/.envrc +++ /dev/null @@ -1 +0,0 @@ -use nix diff --git a/Makefile b/Makefile index 32c5ed0..c1512a8 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ .PHONY: deploy -deploy: - rsync -av ./ bert:/srv/www/home.chandlerswift.com/cities/ +deploy: fetch_data + rsync -av ./ zirconium:/var/www/home.chandlerswift.com/cities/ .PHONY: fetch_data fetch_data: get_data.py diff --git a/shell.nix b/shell.nix deleted file mode 100644 index 9e94ced..0000000 --- a/shell.nix +++ /dev/null @@ -1,11 +0,0 @@ -let - pkgs = import {}; -in - -pkgs.mkShellNoCC { - packages = with pkgs; [ - gdal - python3 - python311Packages.requests - ]; -}