Skip to content

Latest commit

 

History

History
45 lines (26 loc) · 1.49 KB

README.md

File metadata and controls

45 lines (26 loc) · 1.49 KB

Simple Flask Stub Server

Test package with tox

Provides the user with a Docker container, that exposes endpoints, which can be configured via json file.

Get Started with Flask

Documentation on the Flask website

Configure your server

The file endpoints.json is used to configure the server endpoints. To learn more about the format of the configuration file, please take a look at Configuring the server endpoints

Also, the samples directory shows examples on how to configure and quickly use your own endpoint server.

Development

This project uses a virtual environment for development.

More information can be found on the Flask installation website.

Testing

For testing, this project uses tox. The tox.ini configures 2 environments: lint and py39.

To only run linting, use: tox -e lint To only run the tests with pytest, use: tox -e py39

Package

View the package flask-stub-server on pypi

The package can be installed by running:

pip install flask-stub-server

To upgrade the package, use:

pip install --upgrade flask-stub-server