fix flaskConnexion README template to use correct URLs (contextPath is "/v2" for pet store)

This commit is contained in:
hjacobs 2016-01-22 22:33:32 +01:00
parent 9ca83c0174
commit aecc367e35

View File

@ -3,25 +3,26 @@
## Overview ## Overview
This server was generated by the [swagger-codegen](https://github.com/swagger-api/swagger-codegen) project. By using the This server was generated by the [swagger-codegen](https://github.com/swagger-api/swagger-codegen) project. By using the
[OpenAPI-Spec](https://github.com/swagger-api/swagger-core/wiki) from a remote server, you can easily generate a server stub. This [OpenAPI-Spec](https://github.com/swagger-api/swagger-core/wiki) from a remote server, you can easily generate a server stub. This
is an example of building a swagger-enabled flask server. is an example of building a swagger-enabled Flask server.
This example uses the [connexion](https://github.com/zalando/connexion) library on top of Flask. This example uses the [Connexion](https://github.com/zalando/connexion) library on top of Flask.
To run the server, please execute the following: To run the server, please execute the following:
``` ```
sudo pip3 install -U connexion # install Connexion from PyPI
python3 app.py python3 app.py
``` ```
and open your browser to here: and open your browser to here:
``` ```
http://localhost:{{serverPort}}/ui http://localhost:{{serverPort}}{{contextPath}}/ui/
``` ```
Your swagger definition lives here: Your Swagger definition lives here:
``` ```
http://localhost:{{serverPort}}{{basePathWithoutHost}}/swagger.json http://localhost:{{serverPort}}{{contextPath}}/swagger.json
``` ```