Files
OpenBB/cli/openbb_cli/config/setup.py
Henrique Joaquim 6f9d46d5f9 remove hold command and its references (#6399)
* 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
2024-05-13 09:21:41 +00:00

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)