onejgordon/flow-dashboard

View on GitHub
appengine_config.py

Summary

Maintainability
A
0 mins
Test Coverage
#!/usr/bin/python
# -*- coding: utf-8 -*-

from google.appengine.ext import vendor
import os
import logging

USE_ABSOLUTE = True
LIBDIR = 'lib'
# Add any libraries installed in the "lib" folder.
if USE_ABSOLUTE:
    lib_path = os.path.join(os.path.dirname(os.path.realpath(__file__)), LIBDIR)
else:
    lib_path = LIBDIR
vendor.add(lib_path)

logging.debug("Ran appengine_config, lib_path: %s" % lib_path)