I am working on a Slack Bot and mostly followed this tutorial, except for some things that were different on Windows. One of these was setting the BOT_ID and SLACK_BOT_TOKEN environment variables. I used set BOT_ID=xcdsfsdf
in a command prompt that was in a virtualenv session. Now that I've closed everything and returned to the project, BOT_ID and SLACK_BOT_TOKEN were no longer variables.
How can I set these variables so that I do not have to re-create them each time?
I could simply add these as system variables, but what if I was creating multiple slack bots? What is the standard practice? SLACK_BOT_TOKEN_1, SLACK_BOT_TOKEN_2, etc?
Additionally, when I go to reopen the project to run the python code, do I need to activate the virtualenv each time? Or can I just execute the python code?