-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added inline descriptions to justfile
- Loading branch information
Showing
2 changed files
with
8 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,23 @@ | ||
@_default: | ||
just --list | ||
|
||
# build the full project | ||
build: | ||
snowman build --timeit | ||
|
||
# build the full project and once done, start the development server | ||
build-serve: | ||
snowman build --timeit && snowman server | ||
|
||
# only update the static files of the last build | ||
build-static: | ||
snowman build --static | ||
|
||
clear-query-cache: | ||
# clear all queries from the cache | ||
clear-cache: | ||
snowman cache --invalidate | ||
|
||
# setup a new cache from our remote cache repository | ||
bootstrap-cache: | ||
git clone https://github.com/govdirectory/website-cache .snowman | ||
|