aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 54bc12a62915122a418237cd5ef778eca5b4e561 (plain)
1
2
3
4
5
6
7
8
9
10
11
export PYTHONWARNINGS?=ignore

reloadgunicorn:
	cat var/app.pid | xargs kill -HUP

stopgunicorn:
	cat var/app.pid | xargs kill -SIGTERM

clean_pyc:
	@find `pwd` \( -name '*.pyc' -o -name '*.ptlc' \) -type f -delete

bgstack15