Ejemplo n.º 1
0
import os, sys

sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), '..')))

from bookmarks import create_app

app = create_app()
Ejemplo n.º 2
0
def app():
    """Return the flask application."""
    my_app = create_app('config.TestConfig')

    return my_app
Ejemplo n.º 3
0
from bookmarks import create_app

app = create_app()