summaryrefslogtreecommitdiff
path: root/kosten/app/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'kosten/app/__init__.py')
-rw-r--r--kosten/app/__init__.py32
1 files changed, 32 insertions, 0 deletions
diff --git a/kosten/app/__init__.py b/kosten/app/__init__.py
new file mode 100644
index 0000000..7c6408a
--- /dev/null
+++ b/kosten/app/__init__.py
@@ -0,0 +1,32 @@
+from flask import Flask
+
+# create app
+app = Flask('kosten', instance_relative_config = True)
+
+# force autoescape in all files
+app.jinja_env.autoescape = True
+
+app.jinja_env.lstrip_blocks = True
+app.jinja_env.trim_blocks = True
+
+# load config
+app.config.from_object('settings')
+app.config.from_pyfile('settings.py', silent = True)
+
+from .model import db
+from .login import login_manager
+from . import views
+
+# commands
+@app.cli.command()
+def create():
+ db.create_all()
+
+@app.cli.command()
+def drop():
+ db.drop_all()
+
+@app.cli.command()
+def compile():
+ """Compiles all templates."""
+ app.jinja_env.compile_templates('comp', zip = None)