this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: Add wal and shm sqlite files to gitignore

+2 -2
+1 -1
.gitignore
··· 1 1 tumble.sqlite 2 - tumble-test.sqlite 2 + tumble-test.sqlite* 3 3 bin/* 4 4 *.log 5 5 .claude
+1 -1
Makefile
··· 28 28 CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build $(LDFLAGS) -o $(BUILD_DIR)/$(BINARY_NAME)-linux-amd64 ./cmd/tumble 29 29 30 30 clean: ## Clean build directory 31 - rm -rf $(BUILD_DIR) tumble-test.log tumble-test.sqlite 31 + rm -rf $(BUILD_DIR) tumble-test.log tumble-test.sqlite* 32 32 33 33 34 34 test: ## Run unit tests