To alleviate the security concerns surrounding API keys and client secrets I have implemented evironment variables. These variables are set before the execution of the main program and act as arguments for the program. In Linux and MacOS these environment variables can be set like so (in Windows replace the "export" keyword with "set"):
$ export CONSUMER_KEY=VALUE
$ export CONSUMER_SECRET=VALUE
$ export ACCESS_TOKEN=VALUE
$ export ACCESS_TOKEN_SECRET=VALUE
$ pip install -r install/requirements.txt
$ go run src/rover-bot/main.go
- Solomon Heisey
