diff --git a/README.md b/README.md index bee5016..2892892 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,6 @@ -# Blog +# Checkout -Simple blog management system. - -The authoritative source for this repo is at https://git.augendre.info/gaugendre/blog - -Hosted at https://gabnotes.org +Simple interface to register baskets. ## Development ```shell diff --git a/tasks.py b/tasks.py index d05b7d7..d0fbc82 100644 --- a/tasks.py +++ b/tasks.py @@ -43,12 +43,6 @@ def pre_commit(ctx: Context) -> None: ctx.run("pre-commit run --all-files", pty=True) -@task -def mypy(ctx: Context) -> None: - with ctx.cd(BASE_DIR): - ctx.run("pre-commit run --all-files mypy", pty=True) - - @task(pre=[pre_commit, test_cov]) def check(ctx: Context) -> None: pass @@ -80,7 +74,7 @@ def check_alive(ctx: Context) -> None: exception = None for _ in range(5): try: - res = requests.get("https://gabnotes.org") + res = requests.get("https://checkout.augendre.info") res.raise_for_status() print("Server is up & running") return