#!/usr/bin/env python # -*- coding: utf-8 -*- # vim:ts=2:sw=2:expandtab # # Copyright (c) 2010-2011, Nik Cubrilovic. All rights reserved. # # <nikcub@gmail.com> <http://nikcub.appspot.com> # # Licensed under a BSD license. You may obtain a copy of the License at # # http://nikcub.appspot.com/bsd-license # """ Buckley - main.py a simple appengine blog with posts, links, pages and static caching This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. The license is also available online at the URL: <http://nikcub.appspot.com/bsd-license.txt> :copyright: Copyright (C) 2011 Nik Cubrilovic and others, see AUTHORS :license: new BSD, see LICENSE for more details. """ __version__ = '0.2.1' __author__ = 'Nik Cubrilovic <nikcub@gmail.com>' import buckley from sketch.util.gae import autoretry_datastore_timeouts def main(): autoretry_datastore_timeouts() buckley.app.run_appengine() if __name__ == '__main__': main()