Deployment
Iridium bundles all the required assets directly into your binary, meaning there is no build step required to push your first application to production. Iridium's css & js files are minified and compressed for you already, & it will serve that content for you.
Assets you add in are your responsibility to handle. For example, a favicon.ico, custom theme css file, etc. will require you to write a handler to serve that content. You can do this using the mux you generate in your main.go file for example. This offers you the ability to deceide where these assets are fetched from.
Building a binary
No additional steps are required. Simply build your go binary as you traditonal do and ship. SCP, pipeline, copy & paste - whatever you need.
sh
go build . -o my_app