Example #1
0
def main():
    app.run(host='0.0.0.0', port=5000)
    return
Example #2
0
import os
from flask_platform import app

if __name__ == "__main__":
    app.run(host='0.0.0.0', port=5000)
Example #3
0
def runApp():
    app.run(host='0.0.0.0', port=5000)
Example #4
0
def main():
    app.run(debug=True, host='0.0.0.0', port=5000)
Example #5
0
def run():
    from flask_platform import app
    app.run(host='0.0.0.0', port=5000)