Skip to content

Latest commit

 

History

History
24 lines (24 loc) · 727 Bytes

README.md

File metadata and controls

24 lines (24 loc) · 727 Bytes

Instructions on setting up on your machine:

  1. Update .env file
  • The .env file is a sensitive document which contains our bot's token, essentially a key to logging in; Slack DM Dylan Jian for access
  1. Create virtual environment by running:
  python -m venv venv

Then, Mac:

  source venv/bin/activate

Windows:

  source venv/Scripts/activate
  1. Inside your virtual environment (should say (venv) at the beginning of your terminal line), run the following line to install the dependencies.
  pip install -r requirements.txt
  1. Finally, to start the bot, run:
  python start.py

Note: if commands containing python didn't work for you, try python3 instead.