Add another flask exercise

This commit is contained in:
abregman
2020-01-16 23:50:49 +02:00
parent 24edb687e4
commit 85d8a566d1
10 changed files with 201 additions and 57 deletions

View File

@ -0,0 +1,11 @@
#!/usr/bin/env python
# coding=utf-8
import os
basedir = os.path.abspath(os.path.dirname(__file__))
SECRET_KEY = 'shhh'
CSRF_ENABLED = True
SQLALCHEMY_DATABASE_URI = 'sqlite:///' + os.path.join(basedir, 'app.db')