Example #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()
Example #2
0
def app():
    """Return the flask application."""
    my_app = create_app('config.TestConfig')

    return my_app
Example #3
0
from bookmarks import create_app

app = create_app()