summaryrefslogtreecommitdiff
path: root/frest/database.py
diff options
context:
space:
mode:
Diffstat (limited to 'frest/database.py')
-rw-r--r--frest/database.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/frest/database.py b/frest/database.py
new file mode 100644
index 0000000..176cd52
--- /dev/null
+++ b/frest/database.py
@@ -0,0 +1,4 @@
+from flask_sqlalchemy import SQLAlchemy
+
+db = SQLAlchemy()
+config = {"DATABASE_URI": "sqlite:///database.db"}