More scriptish name

This commit is contained in:
2020-04-02 16:41:14 +02:00
parent 1e88a5eab0
commit 99168f5715
3 changed files with 1 additions and 3 deletions

13
script/risotto-server Normal file
View 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