Skip to content

Latest commit

 

History

History
37 lines (27 loc) · 1.11 KB

CONTRIBUTION.md

File metadata and controls

37 lines (27 loc) · 1.11 KB

Welcome to the contributions of Slack-Bot project

Setup of project

  • Create a folder to keep env and clone of the repo.
  • Go in the repo and setup virtualenvironment using
    virtualenv -p python3.7 env
  • Then activate the environment using
    env source/bin/activate
  • After that clone your fork in the same folder.
  • Go in the main directory of the project and do the following to setup project
pip install -r requirements.txt
pre-commit install
  • This will setup the project requirements and pre-commit test hooks!

Note

  • If you are adding any new requirements for the project, make sure that you are adding it to requirements.txt

Project Directory structure

   your-folder
   |-env
   |-slack-bots
     |-requirements.txt
     |-.pre-commit-config.yml

To keep your fork master insync, use these -