Table of Contents
When forming your dburi for your dev.cfg file, use the same argument that would be used by the create_engine method of SQLAlchemy.
sqlalchemy.dburi= argument
Examples are reproduced here for convenience, but see SQLAlchemy documentation for authoritative syntax.
Note the four slashes for an absolute path:
sqlalchemy.dburi="sqlite:////absolute/path/to/database.txt"
sqlalchemy.dburi="sqlite:///relative/path/to/database.txt"``
sqlalchemy.dburi="sqlite://"
sqlalchemy.dburi="sqlite://:memory:"
sqlalchemy.dburi='postgres://scott:tiger@localhost:5432/mydatabase'
sqlalchemy.dburi='mysql://localhost/foo'
sqlalchemy.dburi='oracle://scott:tiger@dsn'
sqlalchemy.dburi='oracle://scott:tiger@127.0.0.1:1521/sidname'