blob: b0f68f45c0ae4eaa2512426a8745110187a1e9dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# Generate the static web site from markdown files.
build:
./build.sh
# Launch a local web server.
server:
yaegi -e 'http.ListenAndServe(":8080", http.FileServer(http.Dir(".")))'
# Publish on github pages.
publish:
git push
|