se-hub/appengine_config.py

7 lines
267 B
Python
Raw Permalink Normal View History

2015-05-09 19:00:14 +00:00
"""`appengine_config` gets loaded when starting a new application instance."""
import sys
import os.path
# add `lib` subdirectory to `sys.path`, so our `main` module can load
# third-party libraries.
sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'lib'))