Hi,

I'm not sure what you mean by #4 but in general, I would say the 2 simplest 
options would be Google App Engine (GAE) or Google Compute Engine (GCE).

1. I would start with GAE (standard environment unless you have some 
unique/complicated stuff) and then migrate to GCE if I need to later. I'm 
recommending GAE because you don't have to worry about scaling your 
infrastructure to meet your demands. You just write your code, deploy it 
and Google takes care of scaling up/down to meet changes in your traffic. 
Google also gives you free SSL and you can use your custom domain on GAE 
<https://cloud.google.com/appengine/docs/standard/python/mapping-custom-domains>
.

If you're using GAE, you have access to Cloud Datastore 
<https://cloud.google.com/datastore> to store your data

2. Development is done on your local machine and you deploy to GAE by 
either using the gcloud command line interface (gcloud CLI) or a 3rd party 
GUI (I have one - https://nocommandline.com). Since the code is local, you 
take care of versioning and/or sharing amongst different people anyway you 
like. If you want different people to be able to deploy, you can grant them 
access (deployment role 
<https://cloud.google.com/appengine/docs/standard/python/roles#predefined_roles>)
  
to be able to deploy or make them co-owners of the product


GAE (standard) will not work if you need any of - streaming,  instant 
messaging (like PubSub). For those, you'll need to use GCE or maybe GAE 
Flexible (you'll have to confirm the information about GAE Flexible)

*.....* *NoCommandLine* *......*
*If you miss GAE Launcher*, try https://nocommandline.com

On Thursday, March 25, 2021 at 4:44:40 AM UTC-7 Ooty Beauty wrote:

> Hello,
>
> I'm very new to google cloud and confused as to which product should go 
> with. Below are my requirements, I believe you will be able to show me some 
> lights
>
> I WANT TO:
>
>    1. Build a dynamic website with Python
>    2. Host the website on the cloud, I don't have the infrastructure on 
>    my own.
>    3. Store the website data in the cloud
>    4. Develop API which will cater to both the website and Mobile App 
>    5. Have access to code and probably share the development work among 
>    different teams
>
> I ALREADY HAVE:
>
>    1. Domain registered
>
> Thanks,
> Pradeep
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/google-appengine/dd0e0d39-8159-47d5-8810-afbcf2b8f8ffn%40googlegroups.com.

Reply via email to