I\'m trying out the Python3.7 runtime on Google Cloud Functions. I am able to deploy the functions and make them work once deployed, however, I can\'t seem to run the emulator t
To run it in IntelliJ with Target Type = Script Path and the default options it should look like this:
Target Type = Script Path
from flask import Flask, request app = Flask(__name__) @app.route('/') def hello(): return hello_get(request) if __name__ == '__main__': app.run('127.0.0.1', debug=True)