a b/wsgi.py
1
from DigiPathAI.main_server import app
2
3
if __name__ == "__main__":
4
    app.config['SLIDE_DIR'] = 'examples'
5
    app.viewer_only = True
6
    app.run()