Skip to content

Commit

Permalink
change start mode on if name main
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanIsak2000 committed Oct 13, 2023
1 parent 8db2aed commit 23a741f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,8 @@

@app.route('/')
def home_page():
return render_template('index.html')
return render_template('index.html')


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

0 comments on commit 23a741f

Please sign in to comment.