diff --git a/Makefile b/Makefile index a02ee46..4912282 100644 --- a/Makefile +++ b/Makefile @@ -8,3 +8,6 @@ watch: serve: python -m http.server --directory out/ + +publish: + rsync -av out/* ssh.alogoulogoi.com:/srv/www.alogoulogoi.com \ No newline at end of file diff --git a/flake.nix b/flake.nix index 887f656..92c7a6a 100644 --- a/flake.nix +++ b/flake.nix @@ -11,7 +11,11 @@ in { devShells.${system} = { default = pkgs.mkShell { - packages = [ pyenv pkgs.entr ]; + packages = [ + pyenv + pkgs.entr + pkgs.rsync + ]; }; }; };