2020-08-18 17:35:39 -07:00
|
|
|
BINARY = weed
|
|
|
|
|
|
|
|
SOURCE_DIR = .
|
|
|
|
|
|
|
|
all: debug_mount
|
|
|
|
|
|
|
|
.PHONY : clean debug_mount
|
|
|
|
|
|
|
|
clean:
|
|
|
|
go clean $(SOURCE_DIR)
|
|
|
|
rm -f $(BINARY)
|
|
|
|
|
2020-09-12 04:05:42 -07:00
|
|
|
debug_shell:
|
|
|
|
go build -gcflags="all=-N -l"
|
|
|
|
dlv --listen=:2345 --headless=true --api-version=2 --accept-multiclient exec weed -- shell
|
|
|
|
|
2020-08-18 17:35:39 -07:00
|
|
|
debug_mount:
|
|
|
|
go build -gcflags="all=-N -l"
|
2021-06-30 12:33:11 -07:00
|
|
|
dlv --listen=:2345 --headless=true --api-version=2 --accept-multiclient exec weed -- -v=4 mount -dir=~/tmp/mm -cacheCapacityMB=0 -filer.path=/
|
2020-08-19 12:07:43 -07:00
|
|
|
|
|
|
|
debug_server:
|
|
|
|
go build -gcflags="all=-N -l"
|
2020-12-19 01:27:09 -08:00
|
|
|
dlv --listen=:2345 --headless=true --api-version=2 --accept-multiclient exec weed -- server -dir=/Volumes/mobile_disk/99 -filer -volume.port=8343 -s3 -volume.max=0 -master.volumeSizeLimitMB=1024 -volume.preStopSeconds=1
|
2020-09-12 04:05:42 -07:00
|
|
|
|
|
|
|
debug_volume:
|
|
|
|
go build -gcflags="all=-N -l"
|
2020-09-13 21:25:51 -07:00
|
|
|
dlv --listen=:2345 --headless=true --api-version=2 --accept-multiclient exec weed -- volume -dir=/Volumes/mobile_disk/100 -port 8564 -max=30 -preStopSeconds=2
|
2020-10-16 12:53:56 -07:00
|
|
|
|
|
|
|
debug_webdav:
|
|
|
|
go build -gcflags="all=-N -l"
|
|
|
|
dlv --listen=:2345 --headless=true --api-version=2 --accept-multiclient exec weed -- -v=4 webdav
|
2020-12-08 22:27:04 -08:00
|
|
|
|
|
|
|
debug_s3:
|
|
|
|
go build -gcflags="all=-N -l"
|
2020-12-19 01:27:09 -08:00
|
|
|
dlv --listen=:2345 --headless=true --api-version=2 --accept-multiclient exec weed -- -v=4 s3
|
2021-02-28 16:22:27 -08:00
|
|
|
|
|
|
|
debug_filer_copy:
|
|
|
|
go build -gcflags="all=-N -l"
|
|
|
|
dlv --listen=:2345 --headless=true --api-version=2 --accept-multiclient exec weed -- -v=4 filer.backup -filer=localhost:8888 -filerProxy -timeAgo=10h
|
2021-08-08 01:21:42 -07:00
|
|
|
|
|
|
|
debug_filer_remote_sync:
|
|
|
|
go build -gcflags="all=-N -l"
|
2021-08-15 23:07:58 -07:00
|
|
|
dlv --listen=:2345 --headless=true --api-version=2 --accept-multiclient exec weed -- -v=4 filer.remote.sync -filer="localhost:8888" -dir=/buckets/b2 -timeAgo=1h
|
2021-08-12 18:10:59 -07:00
|
|
|
|
|
|
|
debug_master_follower:
|
|
|
|
go build -gcflags="all=-N -l"
|
|
|
|
dlv --listen=:2345 --headless=true --api-version=2 --accept-multiclient exec weed -- -v=4 master.follower
|
|
|
|
|