Skip to content

Latest commit

 

History

History
26 lines (18 loc) · 626 Bytes

README.md

File metadata and controls

26 lines (18 loc) · 626 Bytes

DickieBot

Running

  • Setup and use a python virtual environment.
    • python3 -m venv .venv
    • source .venv/bin/activate
  • Install dev dependencies.
    • pip install -r requirements.txt

Development

Setup Virtual Environment

  • Setup and use a python virtual environment.
    • python3 -m venv .venv
    • source .venv/bin/activate
  • Install dev dependencies.
    • pip install -r requirements-dev.txt

Install / Run pre-commit hooks

This repo has a few pre-commit hooks defined. Checkout pre-commit.com for more info.

  • pre-commit install
  • pre-commit run --all-files