blob: 4814667e5e06cb1caf99a404d27d3adb7999c97d (
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 for validation.
server:
yaegi -e 'http.ListenAndServe(":8080", http.FileServer(http.Dir(".")))'
# Publish on my smartphone g7p
publish:
rsync -av --exclude=.git . g7p:www/dot.vertes.org/
|