This is a minimal and production-ready Fiber application set up for deployment on Seenode.
Check our Fiber deployment guide for details.
- Connect Your Repository: Open the Seenode dashboard, select New Web Service, and connect this repository.
- Confirm Settings:
- Build Command:
go build -o app main.go
- Start Command:
./app
- Build Command:
- Deploy: Click Create Web Service.
Your Fiber app will go live at a public URL.
- Port Binding: This app listens on port
80
. Make sure your Fiber code explicitly usesapp.Listen(":80")
. - Minimal Build: A single binary makes it simple to deploy and maintain.
- Horizontal Scaling: Easily scale your service when traffic spikes.