Question description
I wanna deploy my project powered by gofiber to be deployed to vercel.com.
Any solutions?
It seems that Vercel is only supporting Javascript-based frameworks such as Angular, React and Vue.
Running Go would require different build steps to deploy your application.
@thomasvvugt One of my project powered by echo now running on Vercel. I'm now confused by how to run my new project powered by fiber on it too.
It seems that vercel supports Go but it's in alpha. I contacted them to request a demo to explore the possibilities. I will post updates here.
@Fenny Thanks a lot.
I found a repo with simple demo written by net/http.
For conclusion, Vercel would search a package named with handler and a function named with Handler. Aslo vercel.json was needed.
I had contact with some people at vercel.com, it is possible to deploy a fiber app but it would require the adaptor middleware. I personally think this won't benefit your application performance. If you have to use the adaptor to be compatible with a cloud platform, it's better to use the original net/http library.
ith some people at vercel.com, it is possible to deploy a fiber app but it would require the adaptor mid
Thank you @Fenny .