annot-server/webapp/__init__.py
author cavaliet
Thu, 16 Oct 2014 11:04:45 +0200
changeset 28 6025b8470d18
parent 24 eb1f7b06001f
child 42 926f0426ce78
permissions -rw-r--r--
pianoroll in webapp

#
# 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