Creating a cloudflare pages website using GO
I am trying to create a website and deploy it using cloudflare pages using GO.
I've managed getting into the build phase and it correctly builds the application and I assume that the binary gets to the specified path. After this the website is not accessible, it seems as if it does not know how to run the binary. How can I achieve this?
My build command in pages is: go build cmd/main.go build
My build output directory is: build
My GO code of the website is the following:
I've managed getting into the build phase and it correctly builds the application and I assume that the binary gets to the specified path. After this the website is not accessible, it seems as if it does not know how to run the binary. How can I achieve this?
My build command in pages is: go build cmd/main.go build
My build output directory is: build
My GO code of the website is the following:
