Last active
January 30, 2019 10:14
-
-
Save vagelim/98c8792ba12dc8f90341 to your computer and use it in GitHub Desktop.
Sets up a virtual environment, installs kombu, and runs the event listener
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Requires pip | |
pip install virtualenv | |
virtualenv listener | |
listener/bin/pip install kombu | |
listener/bin/python openstackEvents.py |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi, In the 6 step. should i create a openstackEvents.py file in /listener/bin?