Update docs

This commit is contained in:
Gabriel Augendre 2022-04-24 19:21:46 +02:00
parent 91d71094cd
commit 78681e146d
2 changed files with 3 additions and 13 deletions

View File

@ -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

View File

@ -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