Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Newbie using Google App Engine

I've just started using Google App Engine and I have a few questions about it. I hope you can help me:

  1. Once my Java web application is running on Google App Engine. What if one day I decide to run it on my own server. Which programs/services would I need? Is it difficult to configure?

  2. I have a Javascript code that I would like to store on Google Application Engine, so that external webpages can run it directly. Is it possible? Otherwise could I deploy a Java application on Google App which returns this Javascript code? How could an external site ask on "execution time" for this code and run it?

THANKS!!


1 Answers

  1. AppScale supports Java and allows users to deploy and host their own Google App Engine applications

  2. Of course you can, although GAE is not meant to be used as a CDN.
    Have a look to Static Files and Resource Files documentation.

like image 86
systempuntoout Avatar answered May 05 '26 21:05

systempuntoout