From 304e8b8194a182fdb428fe804516ed3d4be75825 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Konstantin=20Gru=CC=88ndger?= Date: Tue, 14 Jun 2016 23:10:51 +0200 Subject: [PATCH] As default we have postgresql instead of sqlite with a db named "ogn" --- config/default.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/default.py b/config/default.py index bc4ab82..88d6d7e 100644 --- a/config/default.py +++ b/config/default.py @@ -1,4 +1,4 @@ -SQLALCHEMY_DATABASE_URI = 'sqlite:///beacons.db' +SQLALCHEMY_DATABASE_URI = 'postgresql://postgres@localhost:5432/ogn' BROKER_URL = 'redis://localhost:6379/0' CELERY_RESULT_BACKEND = 'redis://localhost:6379/0'