On Sunday, May 12, 2013 1:26:45 AM UTC-5, Salar Darwish wrote: > I have a google app script and i want to upload this to google app engine > to link it to my google domain. Every manual i found is about java or > pyhten. How can i upload my app(google app script) to google app engine? > thank you in advance
Chad is correct, Google App Engine does not run Apps Script (Javascript) code. However if you still want to link it to your custom domain, you have two options: 1. Your Apps Script can save data to a Google Cloud SQL db ( https://developers.google.com/apps-script/jdbc ), then you can write a simple Java/Python/Go/(soon)PHP app to pull data out of Cloud SQL and present it on a custom domain. 2. Apps Script can run as "gadgets" on a Google Sites page ( sites.google.com ). And Google Sites can use a custom domain. So create a Google site, map it to your custom domain, then place your Apps Script on a Sites page. ----------------- -Vinny P Technology & Media Advisor Chicago, IL My Go side project: http://invalidmail.com/ -- 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 [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-appengine?hl=en. For more options, visit https://groups.google.com/groups/opt_out.
