Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
flask setting
  • Loading branch information
sectionr0 committed May 25, 2022
0 parents commit ea832ea
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file added __pycache__/app.cpython-39.pyc
Binary file not shown.
12 changes: 12 additions & 0 deletions app.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
from flask import Flask

app = Flask(__name__)


@app.route('/')
def hello_world(): # put application's code here
return 'Hello World!'


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

0 comments on commit ea832ea

Please sign in to comment.