forked from douban/code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
20 lines (14 loc) · 568 Bytes
/
Makefile
File metadata and controls
20 lines (14 loc) · 568 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
nothing:
@echo "Better make nothing be default"
ctags:
@ctags -R --exclude=dist --exclude=venv --exclude=permdir --exclude=tmpdir --exclude=node_modules
clean_pyc:
@find . -type f -name '*.pyc' -delete;
pylint:
@pylint --errors-only --reports=n --include-ids=y --output-format=parseable --ignore=tracplugs active_stubs/ libs/ models/ static/ stubs/ tasks/ tests/ tools/ views/
web: startcache startweb
@echo go web: http://localhost:8000/
startweb:
exec gunicorn -b 0.0.0.0:8000 app:app
startcache:
exec memcached -d -u nobody -l 127.0.0.1 -p 11311 -U 0