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