forked from zachm/tscached
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
70 lines (53 loc) · 2.13 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# A very simple Makefile.
# tscached is only tested against python 2.7 (newest at press time was 2.7.11)
# It *might* be poked to work with 2.6... but you should stop using 2.6.
# Feel free to change PYTHONEXEC if you need to.
PYTHONEXEC=python2.7
PORT=8008
SHELL=/usr/bin/env bash
VERSION_BASH=$(shell bash -c "cat tscached/__init__.py | grep VERSION | sed 's/VERSION = //g' | sed \"s/'//g\"")
VERSION_PYTHON=$(shell python setup.py --version 2>/dev/null)
# builds the darn thing
all: venv frontend
venv/bin/activate: requirements.txt
test -d venv || virtualenv venv -p ${PYTHONEXEC}
venv/bin/pip install -Ur requirements.txt
venv/bin/python setup.py install
venv: venv/bin/activate
devbuild: venv
venv/bin/pip install -Ur requirements-dev.txt
test: devbuild
venv/bin/tox
cover: devbuild
venv/bin/tox -e coverage
clean:
rm -rf venv debug-run.py kairosdb/ tscached/kairos-web/
rm -rf build/ dist/ tscached.egg-info/ htmlcov/
rm -rf debian/tscached debian/*.debhelper debian/*.log
find . -name \*.pyc -delete
# Run with uWSGI server, multiple workers, etc.
run: venv frontend
source venv/bin/activate ; uwsgi --ini tscached.uwsgi.ini --wsgi-file tscached/uwsgi.py -H venv
# Run with single-threaded debug server. Flask gives you auto-reloading on code changes for free.
debug: venv frontend
echo "from tscached import app; app.debug = True; app.run(host='0.0.0.0', port=${PORT})" > debug-run.py
source venv/bin/activate; venv/bin/python debug-run.py
# Copy the debug frontend from kairosdb into our project
frontend:
test -d kairosdb || git clone https://github.com/kairosdb/kairosdb.git
test -d tscached/kairos-web || cp -R kairosdb/webroot tscached/kairos-web
cp logo/favicon.png tscached/kairos-web/img/favicon.png
cp logo/logo.png tscached/kairos-web/img/logo.png
cp logo/logo.png tscached/kairos-web/img/logoSmall.png
# build me a deb
package: frontend
dpkg-buildpackage -us -uc
# changelog stuff
changelog:
dch -D trusty -u low -v ${VERSION_PYTHON}-1
.PHONY: docker_build
docker_build:
docker build -t tscached_v${VERSION_BASH} .
.PHONY: docker_run
docker_run: docker_build
docker run -p 0.0.0.0:${PORT}:8008 -t tscached_v${VERSION_BASH}