-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #202 from sakeerthy/mock-server
Initial commit for mock zss server
- Loading branch information
Showing
2 changed files
with
518 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# ZSS Mock server | ||
|
||
This is a mock server of ZSS to demo its capabilities | ||
|
||
## Requirements | ||
|
||
To run the mock server you will need [python 3.6+](https://www.python.org/) | ||
and the flask package installed. | ||
|
||
```bash | ||
pip install Flask | ||
``` | ||
|
||
## Usage | ||
|
||
```python | ||
python server.py | ||
``` | ||
This should start the server running on [https://127.0.0.1:5000](https://127.0.0.1:5000) by default | ||
|
||
## Configuration | ||
To change the port you can set your environment variable | ||
|
||
```bash | ||
FLASK_RUN_PORT=5000 | ||
``` | ||
|
Oops, something went wrong.