Vercel
Vercel is a new technology, specifically a FaaS, that is growing fast. It's a platform used to host sites. Vercel is one of the easiest to learn and developers all over are falling in love.
Functions as a Service
FaaS are a type of services that allow customers to focus on what they are interested in doing (normally managing application functionalities) without having to build or maintain infrastructure they don't know how to use and don't want to take the time to learn. Usually a FaaS is associated with developing and launching an app.
How to get started with Vercel
Set up an Account
On the Vercel Website select sign up or login.Link your GitHub
Use theContinue with GitHub
option to link your accounts.Choose a new project
On the home page, you should see an option to make a new project.Select a repo to deploy
You should see a list of options from your GitHub because you linked the two. Choose an updated repository to deploy it. I chose an 11ty site I had.
Configure and Deploy
Change anything you want to and select theDeploy
button.Congrats!
You should have a working project! It should not be on your dashboard.
Clicking on it will give you more information.
IST Vercel Demo
Now that you understand the basics of Vercel, here is how I deployed it using the command line.
Clone Repo
I chose this repository online in order to help us.Set up the repositroy
Usenpm install
andnpm i -g vercel
in order to install all the right dependencies. Start the project withvercel dev
.Log into Vercel on the command line
This will prompt you to ensure you're logged in. Your projects should now be linked.
Top comments (0)