about summary refs log tree commit diff
path: root/Makefile
blob: 337ebf91f8c78768a2396876516aa0ee05cc33f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
.PHONY: debug_server remove_meta_data

initiate_db:
	cat create_db.sql | sqlite3 blog.node5.net.db

blog.node5.net/static/pygmentize_code_highlight.css:
	pygmentize -S material -f html -a .codehilite > blog.node5.net/static/pygmentize_code_highlight.css
debug_server:
	venv/bin/flask --app src/blog_node5_net --debug run
open:
	firefox --kiosk 'http://127.0.0.1:5000/' --new-window 
reload_articles:
	cat .flask.pid | xargs kill -1
remove_meta_data:
	exiftool -all:all= -r ./ -overwrite_original

.DEFAULT_GOAL := debug_server