mirror of
https://github.com/OpenBB-finance/OpenBB.git
synced 2026-05-11 10:13:38 +08:00
* remove hold command and its references * remove --local flag as we don't use it anymore @IgorWounds * reset package folder * reset reference * unnecessary line break removed
12 lines
319 B
Python
12 lines
319 B
Python
"""Configuration for the CLI."""
|
|
|
|
from pathlib import Path
|
|
|
|
from openbb_cli.config.constants import ENV_FILE_SETTINGS, SETTINGS_DIRECTORY
|
|
|
|
|
|
def bootstrap():
|
|
"""Setup pre-launch configurations for the CLI."""
|
|
SETTINGS_DIRECTORY.mkdir(parents=True, exist_ok=True)
|
|
Path(ENV_FILE_SETTINGS).touch(exist_ok=True)
|