| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 | VERSION="1.0.2"default: debug test rundebug:	go vet ./...	gofmt -d ./	gofmt -w ./	go build -mod vendor -o ./favetest:	go test ./...run:	@./fave -host 0.0.0.0 -port 8080 -dir ./hosts -debug true -keepalive falsebuild: clean	@-mkdir ./bin	@cd ./bin	@cd ..	CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -mod vendor -a -o ./bin/fave.linux-amd64 -ldflags='-X main.Version=$(VERSION) -extldflags "-static"'	CGO_ENABLED=0 GOOS=darwin GOARCH=amd64 go build -mod vendor -a -o ./bin/fave.darwin-amd64 -ldflags='-X main.Version=$(VERSION) -extldflags "-static"'	CGO_ENABLED=0 GOOS=windows GOARCH=amd64 go build -mod vendor -a -o ./bin/fave.windows-amd64.exe -ldflags='-X main.Version=$(VERSION) -extldflags "-static"'	cd ./bin && find . -name 'fave*' | xargs -I{} tar czf {}.tar.gz {}	@cp -R ./hosts/localhost ./bin/localhost	@-find ./bin/localhost -type f -name '.*' -exec rm -f {} \;	@-find ./bin/localhost -type f -name '*.json' -exec rm -f {} \;	@-rm ./bin/localhost/tmp/*	cd ./bin && tar -zcf localhost.tar.gz ./localhost	@-rm -r ./bin/localhost	cp ./Dockerfile ./bin/Dockerfile	cd ./bin && shasum -a 256 * > sha256sum.txt	cat ./bin/sha256sum.txtclean:	@-rm -r ./binformat:	gofmt -w ./update:	go mod vendor	go mod downloaddocker-test:	@-docker stop fave-test	@-docker rm fave-test	@-docker rmi fave	docker build --rm=false --force-rm=true -t fave .	docker run -d --name fave-test --cpus=".2" -m 200m -p 8080:8080 -t -i fave:latest /app/fave.linux-amd64docker-img:	docker build -t fave .docker-clr:	@-docker stop fave-test	@-docker rm fave-test	@-docker rmi favecy-dev:	yarn cypress opency:	yarn cypress runab:	ab -kc 10 -t 120 http://localhost:8080/
 |