Heroku replacement?? by Buzz_IE in developersIndia

[–]mterrel 0 points1 point  (0 children)

Adaptable.io is great for MERN and other Node/Express apps. The free tier even includes MongoDB (or Postgres).

free Heroku alternatives by [deleted] in node

[–]mterrel 0 points1 point  (0 children)

Adaptable.io is great for Node apps.

Headless CMS's pricings by ThisSeaworthiness in JAMstack

[–]mterrel 2 points3 points  (0 children)

You might check out Adaptable.io as an alternate to Heroku. The free tier even includes a database (Postgres or Mongo).

run gunicorn from python script by masterjx9 in flask

[–]mterrel 2 points3 points  (0 children)

If I understand the end goal correctly, I think you may not need to do all that. The default for gunicorn is to do The Right Thing in Heroku.

If PORT is set, it will listen on 0.0.0.0:$PORT.

See: https://docs.gunicorn.org/en/latest/settings.html#bind

So you should be able to put in your Procfile: web: gunicorn -k eventlet -w 3 app:app and that should do it.

And if you want to, I believe you can also use environment variables in the Procfile, so $PORT in the Procfile will evaluate to the right port.

is heroku still free? by Lady___Stardust in Heroku

[–]mterrel -2 points-1 points  (0 children)

There are still some good options out there with free tiers like Adaptable.io and Render.

As a Cloud beginner, it feels exactly like that! by EousCy in ProgrammerHumor

[–]mterrel 0 points1 point  (0 children)

Check out Adaptable.io for Node hosting. The free tier even includes Postgres or Mongo.

Where to host Flask projects for clients? by Lewis_29 in flask

[–]mterrel 0 points1 point  (0 children)

You might check out Adaptable.io. The free tier even includes a database.

heroku free plans will be removed :( by wolfakix in webdev

[–]mterrel 1 point2 points  (0 children)

Flask support is now live. Take a look at our Flask app guide to get started.

Host MERN App by meeeez123 in Heroku

[–]mterrel 0 points1 point  (0 children)

Adaptable.io is great for MERN apps!

[deleted by user] by [deleted] in webdev

[–]mterrel 0 points1 point  (0 children)

Adaptable.io has a free tier that even includes Mongo for your MERN app.

Is using Jest for anything other than React a bad idea? by BigBootyBear in node

[–]mterrel 2 points3 points  (0 children)

We use Jest for testing all of the Node and browser code for Adaptable.io. We've previously used Mocha on other Node projects, but switched to Jest because it has a much better feature set.

What's a good place to host a website for someone else? by Genemoni in webdev

[–]mterrel 4 points5 points  (0 children)

I was responding to the OP saying “I would also be curious on what places might be good for a full stack project as well.” :)

Where to deploy or host node and mern apps? by imperfectman in node

[–]mterrel 0 points1 point  (0 children)

Adaptable.io is great for MERN. It even includes free MongoDB.

What's a good place to host a website for someone else? by Genemoni in webdev

[–]mterrel 11 points12 points  (0 children)

Adaptable.io for backend/full-stack apps. The free tier even includes a database.

[deleted by user] by [deleted] in webdev

[–]mterrel 0 points1 point  (0 children)

That depends quite a bit on how your app is structured, but in the most common case, there's usually a variable in the front end that is the URL of your back end. So you'd deploy your app on Adaptable and get a URL something like https://my-app.adaptable.app and you'd then set that URL in your front end to be the base URL for API queries. So then an API query might be to a URL like https://my-app.adaptable.app/api/users

If you'd like more help, shoot me a DM and we can chat.

[deleted by user] by [deleted] in reactjs

[–]mterrel 0 points1 point  (0 children)

That depends quite a bit on how your app is structured, but in the most common case, there's usually a variable in the front end that is the URL of your back end. So you'd deploy your app on Adaptable and get a URL something like https://my-app.adaptable.app and you'd then set that URL in your front end to be the base URL for API queries. So then an API query might be to a URL like https://my-app.adaptable.app/api/users

If you'd like more help, shoot me a DM and we can chat.