From 25053f9c6869c9585292bf2a98c56584a94b5feb Mon Sep 17 00:00:00 2001 From: Eibriel Date: Mon, 12 Jan 2015 15:59:36 -0300 Subject: [PATCH] Added SQLALCHEMY_DATABASE_URI on config.py.example --- webservice/bam/config.py.example | 1 + 1 file changed, 1 insertion(+) diff --git a/webservice/bam/config.py.example b/webservice/bam/config.py.example index e140c0e..dcd802f 100644 --- a/webservice/bam/config.py.example +++ b/webservice/bam/config.py.example @@ -4,3 +4,4 @@ class Config: class Development(Config): STORAGE_BUNDLES = '/tmp/bam_storage_bundles' ALLOWED_EXTENSIONS = {'txt', 'mp4', 'png', 'jpg', 'jpeg', 'gif', 'blend', 'zip'} + SQLALCHEMY_DATABASE_URI = 'database://username:password@server/db'