()
| 11 | |
| 12 | |
| 13 | def get_engine_config(): |
| 14 | return DatasourceConf(username=settings.POSTGRES_USER, password=settings.POSTGRES_PASSWORD, |
| 15 | host=settings.POSTGRES_SERVER, port=settings.POSTGRES_PORT, database=settings.POSTGRES_DB, |
| 16 | dbSchema="public", timeout=30) # read engine config |
| 17 | |
| 18 | |
| 19 | def get_engine_uri(conf: DatasourceConf): |
no test coverage detected