This is my current app.py file on my local machine. I would like to recieve webhooks from shopify when an order is sent to my shop which will be handled inside the order_api blueprint.
from flask import Flask, request
from routes.new_shopify_order import order_api
app = Flask(__name__)
app.register_blueprint(order_api)
app.config['DEBUG'] = True
@app.route('/')
def hello_world():
return 'Hello from Flask!'
if __name__ == "__main__":
app.run()
Shopify requires an actual url to send these webhooks and I would like to know if there is any Extenstion I can use with VS Code for me to host my flask app from my local machine with an actual url (even if it's a temporary one) just so I don't have to use a webhosting client.