From 9e842a9898b7a27c76e7dd4a63fdfbba73c19df4 Mon Sep 17 00:00:00 2001 From: Eibriel Date: Thu, 9 Apr 2015 08:40:37 -0300 Subject: [PATCH] Changing database name to server.sqlite --- flamenco/server/application/config.py.example | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flamenco/server/application/config.py.example b/flamenco/server/application/config.py.example index 352e023e..29192f6b 100644 --- a/flamenco/server/application/config.py.example +++ b/flamenco/server/application/config.py.example @@ -1,7 +1,7 @@ import os class Config(object): - SQLALCHEMY_DATABASE_URI='sqlite:///' + os.path.join(os.path.dirname(__file__), '../brender.sqlite') + SQLALCHEMY_DATABASE_URI='sqlite:///' + os.path.join(os.path.dirname(__file__), '../server.sqlite') DEBUG=True PORT=9999 HOST='0.0.0.0' # or 'localhost'