blob: 404140623ca64eac8e6a553150659e2be8daddb1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
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
|