Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file removed Linux Practice.png
Binary file not shown.
43 changes: 0 additions & 43 deletions README.md

This file was deleted.

10 changes: 5 additions & 5 deletions vms/ubuntu_a/application/app.py → application/app.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
from crypt import methods
from flask import Flask

app = Flask(__name__)

@app.route("/", methods=['GET'])
def hello_world():
return "<p>Hello, World!</p>"
return "<p>Hello, World!</p>\n"

@app.route("/", methods=['PUT'])
def hello_world_put():
return "<p>Hello, World!</p>"
return "<p>Hello, World!</p>\n"

@app.route("/", methods=['POST'])
def hello_world_post():
return "<p>Hello, World!</p>"
return "<p>Hello, World!</p>\n"

app.run(host='0.0.0.0', port=5000)
if __name__ == "__main__":
app.run(host='0.0.0.0', port=5000)
230 changes: 0 additions & 230 deletions guide/Manual.md

This file was deleted.

Loading