forked from LiveCarta/BookConverter
configs -> config
This commit is contained in:
0
configs/.gitignore → config/.gitignore
vendored
0
configs/.gitignore → config/.gitignore
vendored
@@ -78,7 +78,7 @@ def server_run():
|
||||
try:
|
||||
folder_path = os.path.dirname(os.path.abspath(__file__))
|
||||
config_path = Path(os.path.join(
|
||||
folder_path, "configs/queue_config.json"))
|
||||
folder_path, "config/queue_config.json"))
|
||||
with open(config_path, "r") as f:
|
||||
conf_param = json.load(f)
|
||||
|
||||
|
||||
@@ -42,7 +42,7 @@ class Access:
|
||||
def set_credentials(self, url: str):
|
||||
folder_path: str = os.path.dirname(
|
||||
os.path.dirname(os.path.abspath(__file__)))
|
||||
config_path: str = os.path.join(folder_path, "configs/api_config.json")
|
||||
config_path: str = os.path.join(folder_path, "config/api_config.json")
|
||||
with open(config_path, "r") as f:
|
||||
params: Dict[str, str] = json.load(f)
|
||||
|
||||
|
||||
@@ -20,7 +20,7 @@ def check_dir(dir_path: str):
|
||||
if __name__ == "__main__":
|
||||
folders = parse_args().folders
|
||||
if not folders:
|
||||
folders = ["books/epub", "books/docx", "books/html", "books/json", "logs", "configs"]
|
||||
folders = ["books/epub", "books/docx", "books/html", "books/json", "logs", "config"]
|
||||
|
||||
folder_path = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
|
||||
folders = [os.path.join(folder_path, folder) for folder in folders]
|
||||
|
||||
Reference in New Issue
Block a user