Skip to content

Instantly share code, notes, and snippets.

@mysteriousHerb
Created June 2, 2019 19:52
Show Gist options
  • Save mysteriousHerb/707012a16872eb050995b692ecdf19a9 to your computer and use it in GitHub Desktop.
Save mysteriousHerb/707012a16872eb050995b692ecdf19a9 to your computer and use it in GitHub Desktop.
backend/config.py
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