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

12
config.py Normal file
View file

@ -0,0 +1,12 @@
# -*- coding: utf-8 -*-
WTF_CSRF_ENABLED = False
# available languages
LANGUAGES = {
'en': 'English',
'de': 'Deutsch',
'fr': 'Français',
'id': 'Bahasa Indonesia',
'pt_BR': 'Portuguese (Brazil)'
}