--- /dev/null
+This web application uses flask (http://flask.pocoo.org/) and Python 3.
+
+Run the application:
+$ FLASK_APP=wradmin FLASK_DEBUG=1 WRADMIN_SETTINGS=development.cfg python3 -m flask run
+$ FLASK_APP=wradmin WRADMIN_SETTINGS=production.cfg python3 -m flask run
+
+Test the application
+PYTHONPATH=. FLASK_APP=wradmin WRADMIN_SETTINGS=test.cfg python3 -m unittest
+
+Run the shell:
+$ FLASK_APP=wradmin FLASK_DEBUG=1 WRADMIN_SETTINGS=development.cfg python3 -m flask shell
+
+ipython shell:
+$ FLASK_APP=wradmin FLASK_DEBUG=1 WRADMIN_SETTINGS=development.cfg ipython
+>>> import wradmin.model
+>>> wradmin.model.meta.Session.query(wradmin.model.MwUser).get(1)
-# http://flask.pocoo.org/
-# FLASK_APP=wradmin FLASK_DEBUG=1 WRADMIN_SETTINGS=development.cfg python3 -m flask run
-# FLASK_APP=wradmin WRADMIN_SETTINGS=production.cfg python3 -m flask run
from flask import Flask, send_from_directory, abort, g, render_template
from sqlalchemy.engine import create_engine
import wradmin.model