forked from rupeshs/fastsdcpu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpaths.py
48 lines (38 loc) · 1.07 KB
/
paths.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
import os
import constants
def join_paths(
first_path: str,
second_path: str,
) -> str:
return os.path.join(first_path, second_path)
def get_app_path():
app_dir = os.path.dirname(__file__)
work_dir = os.path.dirname(app_dir)
return work_dir
def get_configs_path() -> str:
config_path = join_paths(get_app_path(), constants.CONFIG_DIRECTORY)
return config_path
class FastStableDiffusionPaths:
@staticmethod
def get_app_settings_path() -> str:
configs_path = get_configs_path()
settings_path = join_paths(
configs_path,
constants.APP_SETTINGS_FILE,
)
return settings_path
@staticmethod
def get_results_path() -> str:
results_path = join_paths(get_app_path(), constants.RESULTS_DIRECTORY)
return results_path
@staticmethod
def get_css_path():
app_dir = os.path.dirname(__file__)
css_path = os.path.join(
app_dir,
"frontend",
"webui",
"css",
"style.css",
)
return css_path