# Add to the bottom of your wsgi.py file # Don't forget to add barrel to your requirements! from barrel import cooper REALM = "PRIVATE" USERS = [('spam', 'eggs')] application = cooper.basicauth(users=USERS, realm=REALM)(get_wsgi_application())
Post a Comment
No comments:
Post a Comment