diff options
author | ofshellohicy <ofshellohicy@gmail.com> | 2014-09-10 11:42:21 +0800 |
---|---|---|
committer | ofshellohicy <ofshellohicy@gmail.com> | 2014-09-10 11:42:21 +0800 |
commit | bbc403b4534d4e93b446959791466c9d55239afc (patch) | |
tree | 94a706f230537f3a2d30cede8ff6e96b254fc0bb /Makefile | |
parent | update layout tmpl (diff) | |
download | stackbin-bbc403b4534d4e93b446959791466c9d55239afc.tar.gz stackbin-bbc403b4534d4e93b446959791466c9d55239afc.tar.bz2 stackbin-bbc403b4534d4e93b446959791466c9d55239afc.zip |
misc updates
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..54bc12a --- /dev/null +++ b/Makefile @@ -0,0 +1,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 + |