from flask import Flask
from waitress import serve
import api
...
serve(api.app,host='api.staging5.bigcityexperiences.co.in',port=5000)
