Deploy your server

The easiest and fastest way to setup your server up and running is with heroku. Here is the clear documentation provided by vapor to deploy your server on heroku. All you need is a heroku account and your terminal (All free)

In case you prefer videos to learn better, here is a nice video on youtube to setup your server:

Minute 0 to 10 -> Setup heroku server with your terminal.

If you need to further update your server, you can do so using the following commands:

git add .
git commit -m "Your commit message" 
git push heroku main (or master, depending on your branch name)

Last updated