Add initial Flask implementation

This commit is contained in:
Jan Dittberner 2015-11-10 22:31:14 +01:00
parent 7c60ac59a6
commit f63939cb03
8 changed files with 312 additions and 1 deletions

6
run.py Executable file
View file

@ -0,0 +1,6 @@
#!/usr/bin/env python2
from debianmemberportfolio import app
if __name__ == '__main__':
app.debug = True
app.run()