Skip to content

Commit

Permalink
123
Browse files Browse the repository at this point in the history
  • Loading branch information
amonelk committed May 17, 2016
1 parent ffe106e commit 1d7cbcd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions my.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@

app = Flask(__name__)
app.config.update(
SERVER_NAME='45.78.36.201:80'
SERVER_NAME='127.0.0.1:8080'
)
@app.route('/<name>')
def hello_world(name):
# return 'Hello World!'
return render_template('hello.html', name=name, user='ooooop!')
if __name__ == '__main__':
app.run()
app.run('0.0.0.0')

0 comments on commit 1d7cbcd

Please sign in to comment.