You need to install pip3 (included in python3) and pipenv.
(Optional) If you are working in a clean macOS device, you should install Homebrew first
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
Then, install python3 and pipenv
brew install python3
pip3 install pipenv
pipenv --python 3.7
pipenv install
Then you can create a config file for your team (YAML) and set it with the ONBOARDING_FILE_PATH
envvar.
By default it loads our config file 😁, You can use it as example.
pipenv run python cli.py
You can open the VS Code, go to the Debug Tab and click the play button to run the script ✨.
You can run the tests using pytest.
pipenv run pytest services/tests/ --cov=. --disable-warnings