fix port config

This commit is contained in:
AF 2021-11-27 17:45:31 +03:00
parent 7b884dd4f1
commit aaeeff3365

View File

@ -3,7 +3,8 @@ import asyncio
from aiohttp import web
from v6d0auth.app import get_app
from v6d0auth.config import port
if __name__ == '__main__':
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)