Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
671ae92
make it work using zookeeper and across the interwebs
paetling Jan 27, 2016
b35cb4f
allow for ZOOKEEPER_SERVERS environment variable
paetling Jan 27, 2016
e2e7044
add in Dockerfile so we can build this image
paetling Jan 27, 2016
d00a5cc
have last command run be start of the server
paetling Jan 27, 2016
d2eccb5
runserver better
paetling Jan 27, 2016
e89bc7e
add gunicorn and get rid of binary file
paetling Jan 28, 2016
4a5c1d1
remove gitignore
paetling Jan 28, 2016
9ba2e3c
try and refactor to new django
paetling Jan 28, 2016
a1bf0c4
remove dumb file
paetling Jan 28, 2016
313f457
make it work
paetling Jan 28, 2016
a679e3a
change dockerfile to include application
paetling Jan 28, 2016
c384726
make it work
paetling Jan 28, 2016
437fd95
remove static
paetling Jan 28, 2016
b609a6a
allow all hosts, no debug
paetling Jan 28, 2016
58d4b92
make it ipv6 compatible
paetling Jan 28, 2016
d61fea1
do not crash if leader says it is not reporting stats at the moment
paetling Jan 29, 2016
d42a950
add another requirement
paetling Feb 9, 2016
a4ddb1a
Python 3 compatibility
magmax May 3, 2016
063a991
Fix StringIO init
magmax May 3, 2016
07b5b23
Merge pull request #1 from magmax/master
May 3, 2016
f8db326
More on python 3 compatibility
magmax May 4, 2016
ccba29a
Fix the list of servers, remove prints and add tracebacks
magmax May 5, 2016
2ba5798
small fix
magmax May 5, 2016
c756ee0
Improve style and navigation
magmax May 5, 2016
1f7da98
Merge pull request #2 from magmax/master
May 5, 2016
090f08e
Merge pull request #3 from magmax/master
May 5, 2016
4264b39
Add back original license
thieman Nov 14, 2016
ae7c292
Fix: Fix kazoo bug on windows platform when viewing znode tree
daymade Dec 13, 2016
3b756f9
Merge pull request #4 from tsongknows/master
Dec 13, 2016
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,6 @@
*.py[co]
cli_log.txt
__pycache__
venv/
venv2/

*.pyc
*~
8 changes: 8 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
FROM python:2.7
MAINTAINER Alex Etling <alex@gc.io>

ADD . /zookeeper_dashboard

RUN pip install -r /zookeeper_dashboard/requirements.txt

CMD cd /zookeeper_dashboard; gunicorn -b '0.0.0.0:80' -w 4 zookeeper_dashboard.wsgi:application
72 changes: 0 additions & 72 deletions README.textile

This file was deleted.

35 changes: 0 additions & 35 deletions css/blueprint/ie.css

This file was deleted.

29 changes: 0 additions & 29 deletions css/blueprint/print.css

This file was deleted.

Loading