openapi-generator/samples/server/petstore/flaskConnexion
Paŭlo Ebermann 4b9988c4f2 Update samples for several language (just whitespace changes, reordering, VERSION) (#5828)
* Update samples for several languages.

Just whitespace changes and some reordering where the order doesn't matter.

* Adding generated .swagger-codegen/VERSION files.
2017-06-14 01:17:31 +08:00
..
.swagger-codegen Update samples for several language (just whitespace changes, reordering, VERSION) (#5828) 2017-06-14 01:17:31 +08:00
swagger_server Update samples for several language (just whitespace changes, reordering, VERSION) (#5828) 2017-06-14 01:17:31 +08:00
.dockerignore Add docker support to python flask (#5133) 2017-03-21 23:21:53 +08:00
.gitignore [Flask] Add packaging support 2016-11-23 18:40:37 +01:00
.swagger-codegen-ignore [Python][Flask] use tags to organize Python Flask controllers (#3767) 2016-09-20 21:11:06 +08:00
.travis.yml [Flask] Add packaging support 2016-11-23 18:40:37 +01:00
Dockerfile Add docker support to python flask (#5133) 2017-03-21 23:21:53 +08:00
git_push.sh [Flask] Add packaging support 2016-11-23 18:40:37 +01:00
README.md Add docker support to python flask (#5133) 2017-03-21 23:21:53 +08:00
requirements.txt Upgraded connexion to 1.1.9 - required change to encoder as connexion is isolating implementation specific code (#5645) 2017-05-16 21:07:21 +08:00
setup.py [Flask] Add packaging support 2016-11-23 18:40:37 +01:00
test-requirements.txt [Flask] Add packaging support 2016-11-23 18:40:37 +01:00
tox.ini [Flask] Add packaging support 2016-11-23 18:40:37 +01:00

Swagger generated server

Overview

This server was generated by the swagger-codegen project. By using the OpenAPI-Spec from a remote server, you can easily generate a server stub. This is an example of building a swagger-enabled Flask server.

This example uses the Connexion library on top of Flask.

Requirements

Python 3.5.2+

Usage

To run the server, please execute the following from the root directory:

pip3 install -r requirements.txt
python3 -m swagger_server

and open your browser to here:

http://localhost:8080/v2/ui/

Your Swagger definition lives here:

http://localhost:8080/v2/swagger.json

To launch the integration tests, use tox:

sudo pip install tox
tox

Running with Docker

To run the server on a Docker container, please execute the following from the root directory:

# building the image
docker build -t swagger_server .

# starting up a container
docker run -p 8080:8080 swagger_server