Added internal server when the -m flag is run or when a schedule is generated...it starts once and stays running until app closes. Also reconfigured the ajax html updated logic for testing.

This commit is contained in:
Justin Emter
2017-08-04 11:36:46 -07:00
parent 16a00200df
commit 873308ea06
2 changed files with 70 additions and 8 deletions

View File

@@ -1096,7 +1096,13 @@ if __name__ == '__main__':
t = Timer(1, run_task, ())
t.start()
try:
t.start()
except KeyboardInterrupt:
t.join()
#print '{}'.format(datetime.datetime.now(), end="\r")