- Replace config function databases with database_urls
- Add functions for client command creation
**required changes**
- Change database configurations from
python
from sqlalchemy import engine
def databases() -> {str: engine.Engine}:
"""The list of database connections to use, by alias"""
return {'mara': engine.create_engine('postgresql+psycopg2://rootlocalhost/mara')}
to
python
import sqlalchemy.engine.url
def database_urls() -> {str: sqlalchemy.engine.url}:
"""The list of database connections to use, by alias"""
return {'mara': sqlalchemy.engine.url.make_url('postgresql+psycopg2://rootlocalhost/mara')}