Reputation: 7439
I'm hoping someone has ventured into hosting ASP MVC site with Google cloud perhaps even leveraged google components with pricing. Last week they released a help guide on ASP MVC with Google cloud, however it only accounts for Windows server and not ASP MVC with Linux. For me, the complexity comes in when I want to tap into other google components like bigquery etc.
I have 2 questions:
Upvotes: 1
Views: 222
Reputation: 3964
It depends on what you want to do with the web site and how much you want to configure yourself.
The compute engine is an infrastructure as a service environment, where you will have to configure and manage all the resources you require. This is the cheapest, most flexible option, but requires the overhead of configuring the VM's yourself. You'll need to use the compute engine to configure your .net application. Take a look at Google Compute Engine and this will help with a Linux instance Quickstart Using a Linux VM
The app engine provides a Platform as a Service meaning you just deploy and platform manages resources. This will cost more, but will manage code for some popular languages like Java, Python, PHP or Go (unfortunately .net is not covered). Take a look at Google App Engine
If you have a data storage need for your site, the you'll have to decide what you want to store and how.
You can read about the various data store option Google Cloud Data Store Options
In regards to the cost element of your question, you'll have to overlay your requirements onto Google's offerings to build up an estimate. Unfortunately, not having a relevant app engine option will complicate that for you
Upvotes: 1