#!/usr/bin/env python
 
import sys, os
package_dir = "packages"
package_dir_path = os.path.join(os.path.dirname(__file__), package_dir)
sys.path.insert(0, package_dir_path)
 
import bottle
from app import views
 
bottle.debug(True) # Only for debugging purposes, set to False in production
bottle.run(server='gae')