proxstar/app.py
Will Nilges 4ec51ea611 Fixes, use gunicorn, launch websockify
This hosts a smattering of fixes, acutally uses gunicorn properly(?),
launches websockify correctly, and introduces MORE DEAD CODE!

TODO: Fix the scheduling system
2022-07-11 00:35:28 -04:00

6 lines
132 B
Python

from proxstar import app
if __name__ == "__main__":
app.run(host=app.config['IP'], port=app.config['PORT'])
application = app