Files
GLASSES_AI_SERVER/rest_vector.py

6 lines
193 B
Python
Raw Normal View History

import uvicorn
from vector_rest.app.common.config import conf
if __name__ == '__main__':
uvicorn.run('vector_rest.app.main:app', host='0.0.0.0', port=conf().REST_SERVER_PORT, reload=True)