From cccd67d32396221280ad77514b3f4802d1131d8c Mon Sep 17 00:00:00 2001 From: Darnell Date: Tue, 3 Dec 2024 20:33:31 -0500 Subject: [PATCH 1/2] Add Neon and Koyeb to list of PaaS options in Rails deployment lesson --- ruby_on_rails/rails_basics/deployment.md | 46 ++++++++++++++++++++++++ 1 file changed, 46 insertions(+) diff --git a/ruby_on_rails/rails_basics/deployment.md b/ruby_on_rails/rails_basics/deployment.md index 331a98d21fa..c80c6d85a41 100644 --- a/ruby_on_rails/rails_basics/deployment.md +++ b/ruby_on_rails/rails_basics/deployment.md @@ -150,6 +150,52 @@ Whatever your circumstances, we've got you covered. Here are the PaaS providers --- +#### Koyeb + +Can deploy both servers and databases. + +- Easily Git push to deploy. +- Ability to run web apps, APIs, and workers easily. +- SSL and 10 free custom domains + +##### Koyeb: Free Plan + +- One free Web service. +- One free Postgres database (50 hours). +- Doesn't require a credit card to start. +- Pay-per-use by the second for more. + +##### Koyeb: Links + +- [Koyeb homepage](https://www.koyeb.com/) +- [Koyeb documentation](https://www.koyeb.com/docs) +- [Guide: Official getting started with Node/Express on Koyeb guide](https://www.koyeb.com/docs/deploy/express) + +--- + +#### Neon + +Can deploy databases only. + +- 24/7 for your main database. +- 20 additional hours of database branching. +- Point-in-time restore (24 Hours) +- No credit card required. + +##### Neon: Free Plan + +- 0.5 GiB of storage +- 24/7 for your main compute +- No credit card required + +##### Neon: Links + +- [Neon homepage](https://neon.tech/) +- [Neon documentation](https://neon.tech/docs/introduction) +- [Guide: Connect a Node.js application to Neon](https://neon.tech/docs/guides/node) + +--- + #### Heroku - Heroku has a straightforward deployment process using a combination of a well-documented CLI tool and Git. From d767712e293af2399f9fec7c1e45079fe8a3de7f Mon Sep 17 00:00:00 2001 From: Darnell Date: Sat, 7 Dec 2024 14:51:17 -0500 Subject: [PATCH 2/2] Replace express deployment links with ruby-on-rails docs --- ruby_on_rails/rails_basics/deployment.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ruby_on_rails/rails_basics/deployment.md b/ruby_on_rails/rails_basics/deployment.md index c80c6d85a41..5479484f447 100644 --- a/ruby_on_rails/rails_basics/deployment.md +++ b/ruby_on_rails/rails_basics/deployment.md @@ -169,7 +169,7 @@ Can deploy both servers and databases. - [Koyeb homepage](https://www.koyeb.com/) - [Koyeb documentation](https://www.koyeb.com/docs) -- [Guide: Official getting started with Node/Express on Koyeb guide](https://www.koyeb.com/docs/deploy/express) +- [Guide: Official getting started with Node/Express on Koyeb guide](https://www.koyeb.com/docs/deploy/ruby-on-rails) --- @@ -192,7 +192,7 @@ Can deploy databases only. - [Neon homepage](https://neon.tech/) - [Neon documentation](https://neon.tech/docs/introduction) -- [Guide: Connect a Node.js application to Neon](https://neon.tech/docs/guides/node) +- [Guide: Connect a Node.js application to Neon](https://neon.tech/docs/guides/ruby-on-rails) ---