[google-appengine] app.yaml skip_files blocks access to local resources

2011-11-08 Thread andreas schmid
hi,

in my app i need local resources which i user only locally while developing and 
don't want to upload them on deploy.
thats why i have this specific folder listed in skip_files. 
but since now (probably one of the latest SDK releases) this makes the SDK 
ignore those files, which is pretty uncool.

skip_files should only avoid to upload those files, not block the access to it.

is there any reason why this is blocking access to those files?

thx

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



Re: [google-appengine] app.yaml skip_files blocks access to local resources

2011-11-08 Thread Nick Johnson
Hi Andreas,

The appserver deliberately does its best to emulate the production
environment; this includes prohibiting access to files your app will not
have in production.

If you want to access files that won't be available in production, you
should probably write a separate script and run it outside the
dev_appserver.

-Nick Johnson

On Wed, Nov 9, 2011 at 6:43 AM, andreas schmid  wrote:

> hi,
>
> in my app i need local resources which i user only locally while
> developing and don't want to upload them on deploy.
> thats why i have this specific folder listed in skip_files.
> but since now (probably one of the latest SDK releases) this makes the SDK
> ignore those files, which is pretty uncool.
>
> skip_files should only avoid to upload those files, not block the access
> to it.
>
> is there any reason why this is blocking access to those files?
>
> thx
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine" group.
> To post to this group, send email to google-appengine@googlegroups.com.
> To unsubscribe from this group, send email to
> google-appengine+unsubscr...@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/google-appengine?hl=en.
>
>


-- 
Nick Johnson, Developer Programs Engineer, App Engine

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



Re: [google-appengine] app.yaml skip_files blocks access to local resources

2011-11-08 Thread Ugorji
Run dev_appserver.py with parameter: --allow_skipped_files 

I think that should work. 

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine/-/8tlRK_o7vJMJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



Re: [google-appengine] app.yaml skip_files blocks access to local resources

2011-11-09 Thread andreas schmid
thx ill try this out.

On Nov 9, 2011, at 12:38 AM, Ugorji wrote:

> Run dev_appserver.py with parameter: --allow_skipped_files 
> 
> I think that should work. 
> 
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "Google App Engine" group.
> To view this discussion on the web visit 
> https://groups.google.com/d/msg/google-appengine/-/8tlRK_o7vJMJ.
> To post to this group, send email to google-appengine@googlegroups.com.
> To unsubscribe from this group, send email to 
> google-appengine+unsubscr...@googlegroups.com.
> For more options, visit this group at 
> http://groups.google.com/group/google-appengine?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.