Detection
Uffizzi will detect your repository is a Go app if it has a go.mod
file at its root. We also detect and support most other popular Go package managers:
Execution
If your repository's base package compiles a single executable, then Uffizzi will execute that. Otherwise you must specify which binary to execute. Create a file named Procfile
at the root of your repository and fill it with the command to run that serves your application, prefixed by web:
Here are some examples:
web: cmd/example
web: app/cmd/example