File tree Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Original file line number Diff line number Diff line change 20
20
@COMPOSE_FILE=$(COMPOSE_FILE ) docker compose --env-file $(ENV_FILE ) pull --ignore-buildable
21
21
@COMPOSE_FILE=$(COMPOSE_FILE ) docker compose --env-file $(ENV_FILE ) build $(ARGS )
22
22
23
- up :
24
- @echo " Starting sds-gateway"
25
- @COMPOSE_FILE=$(COMPOSE_FILE ) docker compose --env-file $(ENV_FILE ) up -d $(ARGS )
23
+ down :
24
+ @echo " Stopping sds-gateway"
25
+ @COMPOSE_FILE=$(COMPOSE_FILE ) docker compose --env-file $(ENV_FILE ) down $(ARGS )
26
26
27
27
logs :
28
28
@echo " Showing sds-gateway logs…"
@@ -32,9 +32,8 @@ logs-once:
32
32
@echo " Showing gateway logs once…"
33
33
@COMPOSE_FILE=$(COMPOSE_FILE ) docker compose --env-file $(ENV_FILE ) logs $(ARGS )
34
34
35
- down :
36
- @echo " Stopping sds-gateway"
37
- @COMPOSE_FILE=$(COMPOSE_FILE ) docker compose --env-file $(ENV_FILE ) down $(ARGS )
35
+ pre-commit :
36
+ uv run --dev pre-commit run --all-files
38
37
39
38
restart :
40
39
@echo " Restarting sds-gateway"
44
43
@echo " Running tests"
45
44
@COMPOSE_FILE=$(COMPOSE_FILE ) docker compose --env-file $(ENV_FILE ) run $(APP_CONTAINER ) pytest
46
45
@COMPOSE_FILE=$(COMPOSE_FILE ) docker compose --env-file $(ENV_FILE ) run $(APP_CONTAINER ) python manage.py test --force-color
46
+
47
+ up :
48
+ @echo " Starting sds-gateway"
49
+ @COMPOSE_FILE=$(COMPOSE_FILE ) docker compose --env-file $(ENV_FILE ) up -d $(ARGS )
You can’t perform that action at this time.
0 commit comments