Instructions on setting up on your machine:
- 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
- Create virtual environment by running:
python -m venv venv
Then, Mac:
source venv/bin/activate
Windows:
source venv/Scripts/activate
- 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
- Finally, to start the bot, run:
python start.py
Note: if commands containing python
didn't work for you, try python3
instead.