Created
June 2, 2019 19:52
-
-
Save mysteriousHerb/707012a16872eb050995b692ecdf19a9 to your computer and use it in GitHub Desktop.
backend/config.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
class Config(object): | |
SQLALCHEMY_DATABASE_URI = 'sqlite:///test.db' | |
SECRET_KEY = os.environ.get("SECRET_KEY") or "super-secret-key" | |
DEBUG = True | |
CSRF_ENABLED = True |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment