We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33d71a0 commit ee00fe1Copy full SHA for ee00fe1
Exesh/Makefile
@@ -1,19 +1,7 @@
1
-coordinator:
2
- rm -rf file_storage/coordinator && \
3
- docker-compose up -d && \
4
- export CONFIG_PATH=config/coordinator/dev.yml && \
5
- go run cmd/coordinator/main.go
6
-
7
-worker-1:
8
- rm -rf file_storage/worker-1 && \
9
- export CONFIG_PATH=config/worker-1/dev.yml && \
10
- go run cmd/worker/main.go
11
12
-worker-2:
13
- rm -rf file_storage/worker-2 && \
14
- export CONFIG_PATH=config/worker-2/dev.yml && \
15
+stress:
+ python3 stress.py
16
17
clean:
18
- docker compose down --volumes
19
- rm -rf file_storage
+ rm -rf config/test && \
+ docker rm -f $$(docker ps -aq) && \
+ docker volume rm test_postgres
0 commit comments