예제 #1
0
파일: app.py 프로젝트: ErinCall/identity
import os
from identity import app

if __name__ == '__main__':
    port = int(os.environ.get('PORT', 5000))
    app.run(host='0.0.0.0', port=port, debug=os.environ.get('DEBUG', False))
예제 #2
0
from identity import app

if __name__ == '__main__':

    app.run(host="0.0.0.0", port=8000, debug=True)
예제 #3
0
from identity import app

if __name__ == '__main__':
    app.run()
예제 #4
0
from identity import app

if __name__ == '__main__':

    app.run(
        host="0.0.0.0",
        port=8000,
        debug=True
    )
예제 #5
0
파일: app.py 프로젝트: ErinCall/identity
import os
from identity import app

if __name__ == '__main__':
    port = int(os.environ.get('PORT', 5000))
    app.run(host='0.0.0.0',
            port=port,
            debug=os.environ.get('DEBUG', False))