Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 5 additions & 17 deletions Exesh/Makefile
Original file line number Diff line number Diff line change
@@ -1,19 +1,7 @@
coordinator:
rm -rf file_storage/coordinator && \
docker-compose up -d && \
export CONFIG_PATH=config/coordinator/dev.yml && \
go run cmd/coordinator/main.go

worker-1:
rm -rf file_storage/worker-1 && \
export CONFIG_PATH=config/worker-1/dev.yml && \
go run cmd/worker/main.go

worker-2:
rm -rf file_storage/worker-2 && \
export CONFIG_PATH=config/worker-2/dev.yml && \
go run cmd/worker/main.go
stress:
python3 stress.py

clean:
docker compose down --volumes
rm -rf file_storage
rm -rf config/test && \
docker rm -f $$(docker ps -aq) && \
docker volume rm test_postgres
Loading
Loading