this repo has no description
1
fork

Configure Feed

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

at f3beffde77d0138ff84e486e71febfc2b5d09b0f 11 lines 299 B view raw
1all: bin/mostliked bin/feedweb 2 3bin/mostliked: cmd/mostliked/main.go pkg/mostliked/handler.go db/mostliked/*.go pkg/feeds/*.go 4 go build -o $@ ./cmd/mostliked 5 6bin/feedweb: cmd/feedweb/main.go pkg/*/generator.go db/*/*.go pkg/feeds/*.go 7 go build -o $@ ./cmd/feedweb 8 9.PHONY: clean 10clean: 11 rm bin/*