Guest User

Untitled

a guest
Sep 25th, 2018
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. #coding: utf-8
  2.  
  3. #very important to have this next two lines!
  4. import djcelery
  5. djcelery.setup_loader()
  6.  
  7. BROKER_HOST = "localhost"
  8. BROKER_PORT = 5672
  9. BROKER_USER = "guest"
  10. BROKER_PASSWORD = "guest"
  11. BROKER_VHOST = "/"
  12.  
  13. installed_apps+=('djcelery',)
Add Comment
Please, Sign In to add comment