Go-based webhook generic handler
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

16 lines
308 B

#! /bin/bash
# Install goswag
go install github.com/swaggo/swag/cmd/swag@latest
# go to backend directory
cd backend
# rebuild swagger docs
swag init --dir cmd/server/ --parseDependency
# build binary
go build git.samuelpua.com/telboon/webhook-everything/backend/cmd/server
# go to base directory
cd ..