Skip to content
Snippets Groups Projects
Select Git revision
  • af9090eeac70c879d7824b923548d74cfbc04c1a
  • ballinvoher default protected
  • client-http-server-for-token
  • master
  • gitlab-auth-issue
  • windows
  • microsoft
  • message
  • azure_auth
  • prometheus
  • permission-templates
  • no-datastore
  • save-public-keys
  • gitlab-group-level-start
  • v1.1.0
  • v1.0.0
  • v0.1
17 results

example-server.conf

Blame
  • Makefile 311 B
    .PHONY: all generate test
    
    all: generate test
    	test -d bin || mkdir bin
    	go build -o ./bin ./...
    
    include .bingo/Variables.mk
    
    generate: api/endpoints.go
    
    api/endpoints.go: api/oapi-config.yaml api/units.yaml
    	OAPI_CODEGEN=$(OAPI_CODEGEN) \
    	  go generate api/generate.go
    
    test:
    	go test ./...
    
    # vim:ft=make
    #