28 lines
861 B
Python
28 lines
861 B
Python
"""
|
|
Config
|
|
SPDX - License - Identifier: LGPL - 3.0 - or -later
|
|
Copyright © 2023 Project Peter Yefi peteryefi@gmail.com
|
|
"""
|
|
import os
|
|
import platform
|
|
from pathlib import Path
|
|
|
|
from hub.exports.db_factory import DBFactory as CityExportFactory
|
|
from hub.imports.db_factory import DBFactory
|
|
|
|
|
|
class Config:
|
|
|
|
def __init__(self):
|
|
dotenv_path = "{}/.env".format(os.path.expanduser('~'))
|
|
if platform.system() == 'Linux':
|
|
dotenv_path = Path('/usr/local/etc/hub/.env').resolve()
|
|
|
|
environment = 'TEST'
|
|
database_name = 'persistence_test'
|
|
|
|
self.export_db_factory = CityExportFactory(db_name=database_name, app_env=environment,
|
|
dotenv_path=dotenv_path)
|
|
self.import_db_factory = DBFactory(db_name=database_name, app_env=environment,
|
|
dotenv_path=dotenv_path)
|