Skip to content

Commit

Permalink
Make static private
Browse files Browse the repository at this point in the history
  • Loading branch information
twm committed Dec 4, 2023
1 parent 8cb1c5b commit 83b734c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ set shell := ["bash", "-euc"]
default:
just --list

static:
_static:
tox -e static

release: static
release: _static
#!/usr/bin/env bash
set -exu -o pipefail
git diff --quiet HEAD || exit 1
Expand All @@ -18,12 +18,12 @@ release: static
.tox/release/bin/python -m twine check "dist/yarrharr-${version}.tar.gz" "dist/yarrharr-${version}-py3-none-any.whl"
git tag "v${version}"
devserver: static
devserver: _static
tox -e run -- django-admin migrate
tox -e run -- django-admin updatehtml
YARRHARR_CONF='yarrharr/tests/*.ini' tox -e run -- django-admin runserver 127.0.0.1:8888

realserver: static
realserver: _static
tox -e run -- django-admin migrate
tox -e run -- django-admin collectstatic --noinput
tox -e run -- yarrharr
Expand Down

0 comments on commit 83b734c

Please sign in to comment.