We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am trying to replicate and it does not run.
I have a tiny example (that it does not run too):
The small api in python3 with flask (it runs):
from flask import Flask, jsonify app = Flask(name) @app.route('/api/foobar', methods=['GET']) def foobar(): data = { "name": "John Doe", "email": "[email protected]", "roles": ["admin", "user"] } return jsonify(data) if name == 'main': app.run(port=8000)
And the config for api proxy (it does not run):
{ "/proxy/api/foobar": { "target": "http://localhost:8000/", "pathRewrite": { "^/proxy/api/foobar": "/api/foobar" } } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am trying to replicate and it does not run.
I have a tiny example (that it does not run too):
The small api in python3 with flask (it runs):
And the config for api proxy (it does not run):
The text was updated successfully, but these errors were encountered: