js html sanitize, updated config, gravatar support, layout change

This commit is contained in:
Matthew Scragg 2013-10-03 20:19:33 -05:00
parent afa4da4869
commit 27ced9d90e
12 changed files with 234 additions and 21 deletions

4
app.py
View file

@ -1,8 +1,8 @@
from gevent import monkey, pywsgi
monkey.patch_all()
import logging
from realms import app
from realms import app, config
if __name__ == '__main__':
app.logger.setLevel(logging.INFO)
pywsgi.WSGIServer(('', 10000), app).serve_forever()
pywsgi.WSGIServer(('', config.port), app).serve_forever()