Skip to content

Commit

Permalink
Merge pull request #28 from noddi/bugfix/default_sqlite_path
Browse files Browse the repository at this point in the history
Fix default Sqlite path.
  • Loading branch information
mistercrunch committed Sep 19, 2015
2 parents e0d6d20 + 6c8f268 commit 256193c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ PANORAMIX_WEBSERVER_PORT = 8088
SECRET_KEY = '\2\1thisismyscretkey\1\2\e\y\y\h'
# The SQLAlchemy connection string.
SQLALCHEMY_DATABASE_URI = 'sqlite:///tmp/panoramix.db'
SQLALCHEMY_DATABASE_URI = 'sqlite:////tmp/panoramix.db'
# Flask-WTF flag for CSRF
CSRF_ENABLED = True
Expand Down
2 changes: 1 addition & 1 deletion panoramix/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
SECRET_KEY = '\2\1thisismyscretkey\1\2\e\y\y\h'

# The SQLAlchemy connection string.
SQLALCHEMY_DATABASE_URI = 'sqlite:///tmp/panoramix.db'
SQLALCHEMY_DATABASE_URI = 'sqlite:////tmp/panoramix.db'
# SQLALCHEMY_DATABASE_URI = 'mysql://myapp@localhost/myapp'
# SQLALCHEMY_DATABASE_URI = 'postgresql://root:password@localhost/myapp'

Expand Down

0 comments on commit 256193c

Please sign in to comment.