Add standalone server to rest api server
This commit is contained in:
parent
0702fc7580
commit
eadbc2496e
@ -1 +1,8 @@
|
|||||||
from karumedia import application
|
from karumedia import application
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
from wsgiref.simple_server import make_server
|
||||||
|
|
||||||
|
httpd = make_server('0.0.0.0', 8080, application)
|
||||||
|
print("Serving on http://0.0.0.0:8080/")
|
||||||
|
httpd.serve_forever()
|
||||||
|
Loading…
Reference in New Issue
Block a user