From bc0995d0cf9bdbc849dd694be1dde1e33ba42df1 Mon Sep 17 00:00:00 2001 From: Richard Bowman Date: Thu, 18 Feb 2021 18:03:42 +0000 Subject: [PATCH] Added poe serve To save some typing ``poe serve`` now runs a debug server. --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 5124bbb5..3476e253 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -99,6 +99,7 @@ isort = "isort ." pylint = "pylint openflexure_microscope" mypy = "mypy --cobertura-xml-report openflexure_microscope openflexure_microscope" test = "pytest ." +serve = "python -m openflexure_microscope.api.app" format = ["black", "isort"] lint = ["pylint", "mypy"]