Advertisement
yudjinDegtyarev

cesi.wsgi

May 23rd, 2019
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. #!usr/bin/env python3
  2. import sys
  3. import logging
  4. import os
  5. logging.basicConfig(stream=sys.stderr)
  6. sys.path.insert(0,"/var/opt/cesi-2.0/cesi/")
  7.  
  8. from wsgi import app as application
  9. application.secret_key = os.urandom(24)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement