[appengine-java] Re: Is there limitation of size of webapp uploaded to GAE?

2009-08-31 Thread leszek
http://code.google.com/appengine/docs/java/runtime.html#Quotas_and_Limits (navigate to the bottom) --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google App Engine for Java" group. To post to this group, send email

[appengine-java] Re: Is there limitation of size of webapp uploaded to GAE?

2009-09-02 Thread Jason (Google)
Static files can be up to 10 MB each. There is no limit on the total storage size for static files. There is, however for resource files -- the combined size of all resource files can't exceed 150 MB. - Jason On Mon, Aug 31, 2009 at 12:21 AM, barak wrote: > > I was wondering - does GAE has some

[appengine-java] Re: Is there limitation of size of webapp uploaded to GAE?

2009-09-03 Thread barak
If I understood correctly - static files are the files that kept under the war directory. What are the resources files? On Sep 2, 7:19 pm, "Jason (Google)" wrote: > Static files can be up to 10 MB each. There is no limit on the total storage > size for static files. There is, however for resourc

[appengine-java] Re: Is there limitation of size of webapp uploaded to GAE?

2009-09-04 Thread Jason (Google)
By default, all files under war are treated as both static and resource files. You can modify your appengine-web.xml file to explicitly indicate which files are static and which are resource: http://code.google.com/appengine/docs/java/config/appconfig.html#Static_Files_and_Resource_Files - Jason