Skip to content

Commit 6485df4

Browse files
committed
🔨 refactor: make Just recipes silent
1 parent 4bd90b2 commit 6485df4

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

‎Justfile‎

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
1+
set quiet := true
12
set dotenv-load := true
23
set export := true
34
set unstable := true
45

56
# ------------------------------ UTILS ------------------------------
67

7-
@_default:
8+
_default:
89
just --choose
910

1011
[doc("prints this list")]
1112
[group("help")]
12-
@help:
13+
help:
1314
just --list
1415

1516
# ------------------------------ DOCKER ------------------------------
@@ -18,7 +19,8 @@ set unstable := true
1819
[doc("build and force-recreate up all")]
1920
[group("docker")]
2021
build:
21-
docker compose build && docker compose up --force-recreate -d
22+
docker compose build
23+
docker compose up --force-recreate -d
2224

2325
[doc("run app in background")]
2426
[group("docker")]
@@ -105,4 +107,4 @@ mypy:
105107

106108
[doc("run all tests")]
107109
[group("tests")]
108-
@test: pytest bandit mypy
110+
test: pytest bandit mypy

0 commit comments

Comments
 (0)