More scriptish name
This commit is contained in:
13
script/risotto-server
Normal file
13
script/risotto-server
Normal file
@ -0,0 +1,13 @@
|
||||
#!/usr/bin/env python3
|
||||
from asyncio import get_event_loop
|
||||
from risotto import get_app
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
loop = get_event_loop()
|
||||
loop.run_until_complete(get_app(loop))
|
||||
try:
|
||||
print('HTTP server ready')
|
||||
loop.run_forever()
|
||||
except KeyboardInterrupt:
|
||||
pass
|
Reference in New Issue
Block a user