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
This commit is contained in:
Will Nilges 2022-07-11 00:35:28 -04:00
parent 7555232926
commit 4ec51ea611
7 changed files with 27 additions and 17 deletions

6
app.py Normal file
View file

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