Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Neon and Koyeb to list of PaaS options in Rails deployment lesson #29148

Merged
merged 2 commits into from
Jan 3, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 46 additions & 0 deletions ruby_on_rails/rails_basics/deployment.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/ruby-on-rails)

---

#### 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/ruby-on-rails)

---

#### Heroku

- Heroku has a straightforward deployment process using a combination of a well-documented CLI tool and Git.
Expand Down
Loading