simple tool to check http(s) response code on remote web service
Go to file
2024-01-11 14:36:01 +00:00
src/cli Initial commit 2024-01-11 14:36:01 +00:00
tests Initial commit 2024-01-11 14:36:01 +00:00
.gitignore Initial commit 2024-01-11 14:36:01 +00:00
LICENSE Initial commit 2024-01-11 14:36:01 +00:00
Makefile Initial commit 2024-01-11 14:36:01 +00:00
Pipfile Initial commit 2024-01-11 14:36:01 +00:00
README.rst Initial commit 2024-01-11 14:36:01 +00:00
setup.cfg Initial commit 2024-01-11 14:36:01 +00:00
setup.py Initial commit 2024-01-11 14:36:01 +00:00

webcheck
===

simple tool to check http(s) response code on remote web service


Preparing for Development
-------------------------

1. Ensure ``pip`` and ``pipenv`` are installed
2. Clone repository: ``git clone https://github.com/SweBarre/sps.git``
3. ``cd`` into repository
4. Activate virtualenv: ``pipenv shell``
5. Fetch development dependencies ``make dev``


Running Tests
-------------

Run tests locally using ``make`` if virtualenv is active:

::

    $ make test

If virtualenv isn't active then use:

::

    $ pipenv run make