Compare commits

..

No commits in common. "708b0940d44511c974ab950b8657a3fa7c71322b" and "4c7c98bba015d4fe7bf4594d050f30baf388b644" have entirely different histories.

3 changed files with 2 additions and 14 deletions

1
.envrc
View file

@ -1 +0,0 @@
use nix

View file

@ -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

View file

@ -1,11 +0,0 @@
let
pkgs = import <nixpkgs> {};
in
pkgs.mkShellNoCC {
packages = with pkgs; [
gdal
python3
python311Packages.requests
];
}