Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to run app on App Engine for free

I am trying to run Parse Server, a Node.js app, on Google App Engine. And I am on trial period with $300 free credit.

From this page, https://cloud.google.com/appengine/docs/quotas, it says there is 28 free instance-hours per day. The app is running with 2 instances and, according to the report, my account is being charged for Compute Engine (G1 Small) for 48 hours everyday.

So how could I benefit from that 28 free hours?

like image 516
Chatpong Suteesuksataporn Avatar asked Feb 23 '16 22:02

Chatpong Suteesuksataporn


People also ask

Can I use App Engine for free?

App Engine standard environment pricing. Apps in the standard environment have a free tier for App Engine resources. Any use of App Engine resources beyond the free tier incurs charges as described in this section. To estimate costs for App Engine resources in the standard environment, use the pricing calculator.

How much does it cost to run an app on Google cloud?

Google Cloud has a monthly price tag of $5 per user for Basic, $8 for Standard, and $10 for Premium. The price for each tier includes the use of Google Compute Engine instances, Google Storage for data, and Google App Engine for web applications.


2 Answers

There are 28 free instance-hours per day for frontend instances only when you are using one of the standard environments or runtimes(python, java, php and go) and not when you're using app engine's managed VMs. All managed VM environments are based on Compute Engine and are all billable.

For a nodejs app, you're certainly using a managed VM.

To enjoy the free instance hours you'll need to use one of the standard runtimes.

like image 155
Jeffrey Godwyll Avatar answered Oct 20 '22 04:10

Jeffrey Godwyll


For the answer below me , nodejs now is one of the standard environments right now, so you basically can run your nodejs app for free

like image 23
Jimmy lau Avatar answered Oct 20 '22 05:10

Jimmy lau