This repository has been archived on 2023-10-10. You can view files and clone it, but cannot push or open issues/pull-requests.
cutedb/webapp/__init__.py

15 lines
273 B
Python

import flask
try:
import webapp.config
except ImportError:
raise Exception("Could not import config file. Does config.py exist?")
app = flask.Flask(__name__)
app.debug = True
app.secret_key = webapp.config.SECRET
import webapp.views
from webapp import database