Skip to content

Commit

Permalink
Turned off debug mode and made host publicly accessible
Browse files Browse the repository at this point in the history
  • Loading branch information
Buuntu committed Jan 23, 2016
1 parent 62175c8 commit cbf06e8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ <h1>Tic-Tac-Toe</h1>
</div>
<div class="row">
<div class="col-xs-12 text-center">
<button type="button" class="btn btn-info" ng-click="restart()">Start Over</button>
<button type="button" class="btn btn-info btn-lg" ng-click="restart()">Start Over</button>
</div>
</div>
</div>
Expand Down
4 changes: 2 additions & 2 deletions tictactoe.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,5 @@ def move():
computer_wins = False, player_wins = False, board = game.board)

if __name__ == '__main__':
app.debug = True
app.run()
# app.debug = True
app.run(host='0.0.0.0')

0 comments on commit cbf06e8

Please sign in to comment.