Skip to content

Latest commit

 

History

History
51 lines (32 loc) · 1.88 KB

README.md

File metadata and controls

51 lines (32 loc) · 1.88 KB

Team Onboarding app 🤓

Codacy Badge

Codacy Badge

CircleCI

Screenshot 2019-06-18 at 19 34 10

Screenshot 2019-06-18 at 19 34 24

Installation

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.

Running from terminal

pipenv run python cli.py

Running from VS Code

You can open the VS Code, go to the Debug Tab and click the play button to run the script ✨.

Run the tests

You can run the tests using pytest.

pipenv run pytest services/tests/ --cov=. --disable-warnings