Add new challenge

This commit is contained in:
abregman
2019-12-21 13:26:41 +02:00
parent 0f871e9b9e
commit 979d11d13f
17 changed files with 188 additions and 13 deletions

View File

@ -0,0 +1,12 @@
#!/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')