Reputation: 93
We would like to develop and sell custom commercial GAE applications. I would like information on the deployment of GAE applications on arbitrary Google Apps domains (i.e. not appspot).
Suppose our company is abc.com and we are selling app to def.com and xyz.com. What are the steps to deploy our app on our customer's domain?
When an app is deployed on many domains:
Upvotes: 9
Views: 1941
Reputation: 101149
You have three options at the moment, when it comes to a 'multi-tenant' app such as you describe:
Upvotes: 14
Reputation: 1068
This is possible but to the best of my knowledge, def.com
& xyz.com
will have to sign up for Google Apps.
Once the domain is registered with Google Apps by your prospective customers, they can add not only Google Apps like Gmail & Docs to subdomains (mail.def.com
& docs.def.com
) but also any GAE apps (fooapp.def.com
).
Another cool feature about this is that let's say company def.com
is using hosted GMail and have Google Authentication for their employees. Now if your app is using the GAE provided authentication hooks, then you can automatically authenticate just their employees without any code change on your part! At least, that's the theory since I haven't tried it out myself ;-)
Upvotes: 4