예제 #1
0
파일: tictactoe.py 프로젝트: DenysGurin/evo
from tictactoe import app

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


if __name__ == '__main__':
    import sys
    debug = False
    if len(sys.argv) > 1:
        debug = sys.argv[1] == 'DEV'
    app.run(debug=debug)
예제 #3
0
from tictactoe import app, views

app.debug = True
app.run(port=3000)
예제 #4
0
from tictactoe import app

if __name__ == "__main__":
    app.run(debug=True)