Skip to content

Commit

Permalink
fixes 34
Browse files Browse the repository at this point in the history
  • Loading branch information
sbehrens committed Jun 24, 2016
1 parent 6106b60 commit d601c10
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions config-default.py
Expand Up @@ -13,12 +13,12 @@
# limitations under the License.
import os

_basedir = os.path.abspath(os.path.dirname(__file__))
_basedir = os.path.abspath(os.path.dirname("__file__"))

DEBUG = True

# Database setup
SQLALCHEMY_DATABASE_URI = os.getenv('sketchy_db', 'sqlite:////tmp/sketchy-db.db')
SQLALCHEMY_DATABASE_URI = os.getenv('sketchy_db', 'sqlite:///{}/sketchy-db.db'.format(_basedir))

# Set scheme and hostname:port of your sketchy server.
# Alterntively, you can export the 'host' variable on your system to set the
Expand Down

0 comments on commit d601c10

Please sign in to comment.