hitrust / google-app-engine-django

Automatically exported from code.google.com/p/google-app-engine-django
Apache License 2.0
0 stars 0 forks source link

.google_appengine not found in SDK 1.1.9 #112

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
As noted in the groups, SDK 1.1.9 breaks skipped file importing.  Helper r74 
fixes this problem for app.yaml, but not for .google_appengine.

This is now broken:
 project_folder
  - .google_appengine
  - main.py
  - app.yaml
  - ...etc

There's a clumsy workaround - lose the dot in front of google_appengine:
 project_folder
  - google_appengine
  - main.py
  - app.yaml
  - ...etc

Note: manage.py will now whine at you when you runserver, and you'll have to 
add the dot back before you can update.

Original issue reported on code.google.com by bsimpson on 2 Mar 2009 at 11:14

GoogleCodeExporter commented 9 years ago
The new --allow_skipped_files flag for dev_appserver.py would probably fix this 
bug.  (I'm now using a Mac, 
which doesn't need the .google_appengine link, so I can't test it). 

Original comment by bsimpson on 8 Apr 2009 at 11:27

GoogleCodeExporter commented 9 years ago
r72 fixed the issue for app.yaml
r73 fixed the issue for .google_appengine (assuming you use a symlink to the 
real
location as recommended)

I've committed some changes to the README in r78 to clarify this further.

Original comment by mattbrow...@gmail.com on 17 Apr 2009 at 5:26