diff --git a/README.md b/README.md index e69de29..675ee2b 100644 --- a/README.md +++ b/README.md @@ -0,0 +1,15 @@ +## Abstract +還記得有天騎摩托車在太原路準備去上班,天氣微陰,天空中有淡淡薄雲,但光還算透得去,我抬頭看見那陽光透過路樹的枝葉之間, +忽然意識到,我就這樣在太原路上死掉的可能性,並非為零吧?如果是這樣的話,那我現在想做什麼呢? + +大概就是寫一份遺囑了吧 + +## Requirements +* Hardware + * MacbookPro14 2021 +* Software + * MacOS 15 + +## Dirs +* **embrace_life** + * app source codes \ No newline at end of file diff --git a/embrace_life/app.py b/embrace_life/app.py index aa0c141..b8a1a7f 100644 --- a/embrace_life/app.py +++ b/embrace_life/app.py @@ -13,7 +13,7 @@ from utils import is_valid_taiwan_id, parse_config, parse_txt class EmbraceLifeApp: - def __init__(self, config_path: str = 'config.yaml', will_template_path: str = 'assets/will_template.txt') -> None: + def __init__(self, config_path: str = 'assets/config.yaml', will_template_path: str = 'assets/will_template.txt') -> None: self._config = parse_config(config_path) self._will_template_path = will_template_path self._will_content = None diff --git a/embrace_life/config.yaml b/embrace_life/assets/config.yaml similarity index 100% rename from embrace_life/config.yaml rename to embrace_life/assets/config.yaml