-
Notifications
You must be signed in to change notification settings - Fork 40
App Engine
App Engine is a fully managed, serverless PaaS for developing and hosting web applications at scale. You can choose from several popular languages, libraries, and frameworks to develop your apps, then let App Engine take care of provisioning servers and scaling your app instances based on demand.
The Standard Environment and the Flexible environment support a host of programming languages, including Java, Python, PHP, Node.js, Go, etc.
App Engine standard environment is based on container instances running on Google's infrastructure. Containers are preconfigured with one of several available runtimes (Java 8, Python 3.7, Go and PHP). Each runtime also includes libraries that support App Engine Standard APIs.
https://cloud.google.com/appengine/docs/go
Here are some useful URL pointers regarding Go.
https://github.com/avelino/awesome-go
A Go language tutorial video.
https://www.youtube.com/watch?v=YS4e4q9oBaU&list=PLk_epN-7EGrjdhjn5gCMJ1aLIhRTHDJcu&index=11&t=0s
https://cloud.google.com/appengine/docs/python
A Python tutorial video.
https://www.youtube.com/watch?v=rfscVS0vtbw
https://cloud.google.com/appengine/docs/standard/python3/create-app
https://cloud.google.com/appengine/docs/nodejs
A video tutorial on how to create a web application using node.js and express framework.
https://www.youtube.com/watch?v=G8uL0lFFoN0
https://cloud.google.com/blog/topics/developers-practitioners/new-java-ruby-python-php-runtimes
Based on Google Compute Engine, the App Engine flexible environment automatically scales your app up and down while also balancing the load. Because of sandbox restrictions, most App Engine standard applications tend to be stateless web applications that respond to HTTP requests quickly.
In contrast, the flexible environment runs your application in Docker containers on Google Compute Engine virtual machines (VMs), which have fewer restrictions. For example, you can use any programming language of your choice, write to disk, use any library you'd like, and even run multiple processes. The flexible environment also allows you to choose any Compute Engine machine type for your instances so that your application has access to more memory and CPU.
https://cloud.google.com/appengine/docs/flexible/go/flexible-for-standard-users
https://cloud.google.com/appengine/docs/the-appengine-environments
https://cloud.google.com/appengine/docs/flexible/python/run-flex-app-on-kubernetes
https://ipinfo.io/blog/app-engine-to-google-kubernetes-engine/
https://github.com/bobbae/gcp/wiki/PaaS#paas-alternatives
-
Compare to AWS Elastic Beanstalk https://medium.com/@at_ishikawa/comparisons-for-elastic-beanstalk-app-engine-and-heroku-2129d9c827bc
-
https://foghornconsulting.com/2017/05/12/battle-of-the-paas-aws-vs-gcp/
https://cloud.google.com/appengine/docs/standard/python/samples
https://github.com/GoogleCloudPlatform/golang-samples/tree/main/appengine_flexible
https://medium.com/@david.alvares.62/your-first-steps-with-app-engine-63c7eefbe609
https://cloud.google.com/appengine/docs/standard/python/tutorials
https://cloud.google.com/go/getting-started
https://cloud.google.com/go/getting-started/authenticate-users-with-iap
https://www.qwiklabs.com/focuses/2754?parent=catalog
App Engine: Qwik Start - Python
Deploying a Python Flask Web Application to App Engine Flexible