diff options
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..4041406 --- /dev/null +++ b/Makefile @@ -0,0 +1,12 @@ +# Generate the static web site from markdown files. +build: + ./build.sh + ./genrss.sh > feed.xml + +# Launch a local web server. +server: + yaegi -e 'http.ListenAndServe(":8080", http.FileServer(http.Dir(".")))' + +# Publish on github pages. +publish: + git push |
