annot-server/webapp/__init__.py
author rougeronj
Tue, 20 Jan 2015 18:37:51 +0100
changeset 100 0d7dac03c1a0
parent 42 926f0426ce78
child 108 082b64a5c699
permissions -rw-r--r--
Merge with 72d767c5142df7fc6387215096321295fbaaa73d Update doubleroll and annotsroll to support stageView

#
# See LICENCE for detail
# Copyright (c) 2014 IRI
#

import uuid
import json

from flask import Flask

import config
import database

app = Flask(__name__)
app.secret_key = str(uuid.uuid4())
app.debug = config.DEBUG
app.config.from_object(config)

import webapp.views
import webapp.api
import webapp.admin