Guest User

Untitled

a guest
Mar 22nd, 2018
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. # Install the kakfa plugin
  2. heroku plugins:install heroku-kafka
  3. # Get the code
  4. git clone git@heroku.com:heroku/kafka-workshop.git
  5. # Create the app and addon
  6. APP=whatever-you-want
  7. heroku apps:create $APP
  8. heroku addons:create -a $APP heroku-kafka:standard-0
  9. heroku addons:create -a $APP heroku-postgresql:hobby-dev
  10. heroku kafka:wait -a $APP
  11. heroku pg:wait -a $APP
  12. # Let's see what configs we got!
  13. heroku config -a $APP
  14. # Create a topic:
  15. heroku kafka:topics:create -a $APP messages
Add Comment
Please, Sign In to add comment