forked from dtzinov/ggrc-core
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Don't zip the dependencies before deployment
appengine.ext.vendor doesn't support zip files and expects dirs. Appengine SDK limits imports of packages under "google" namespace unless they are provided via appengine.ext.vendor.
- Loading branch information
1 parent
d8038a4
commit 0002987
Showing
5 changed files
with
30 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Copyright (C) 2017 Google Inc. | ||
# Licensed under http://www.apache.org/licenses/LICENSE-2.0 <see LICENSE file> | ||
|
||
"""`appengine_config.py` is automatically loaded when Google App Engine starts | ||
a new instance of your application. This runs before any WSGI applications | ||
specified in app.yaml are loaded. | ||
""" | ||
|
||
from google.appengine.ext import vendor | ||
|
||
# Third-party libraries are stored in "packages", vendoring will make | ||
# sure that they are importable by the application. | ||
vendor.add('packages') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters