fix port config
This commit is contained in:
parent
7b884dd4f1
commit
aaeeff3365
@ -3,7 +3,8 @@ import asyncio
|
|||||||
from aiohttp import web
|
from aiohttp import web
|
||||||
|
|
||||||
from v6d0auth.app import get_app
|
from v6d0auth.app import get_app
|
||||||
|
from v6d0auth.config import port
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
loop = asyncio.get_event_loop()
|
loop = asyncio.get_event_loop()
|
||||||
web.run_app(get_app(loop), host='127.0.0.1', port=5003, loop=loop)
|
web.run_app(get_app(loop), host='127.0.0.1', port=port, loop=loop)
|
||||||
|
Loading…
Reference in New Issue
Block a user