blob: 3064dc656abb9ed3613e5645cd8a5a24b17b0e76 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# .git/hooks/post-commit
#!/bin/bash
echo "Environment: Development"
# Remove previous build
rm -rf .build/*
# Run publishing script
emacs --script publish.el
# Minify CSS
minify -o theme/static/styles.min.css theme/static/styles.css
# Launch development web server
cd .build/
python3 -m http.server
|