/bobabot

Primary LanguagePython

Bobabot

Getting started

Fork and clone

cd bobabot

Navigate into project

python -m venv venv

Initialize your python virtual environment

note: This is only necessary for new environment setups

source venv/bin/activate

Activate the python virtual environment

pip install -r requirements.txt
pip install -r requirements.dev.txt

Install project dependencies into virtual environment

Linting

This project uses Black as formatting guidelines. Pre-commit is used to auto format as users commit their work.

pre-commit run --all-files

Run pre-commit on all files to check current formatting status of the project.