From 1be15f450684bcce85a4d23977e3550cba3461dc Mon Sep 17 00:00:00 2001 From: Roman Mogylatov Date: Fri, 17 Jul 2020 10:29:10 -0400 Subject: [PATCH] Update readme --- README.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.rst b/README.rst index 34e80eb3..a986cfb5 100644 --- a/README.rst +++ b/README.rst @@ -72,6 +72,7 @@ This place is called **the container**. You use the container to manage all the from dependency_injector import containers, providers from dependency_injector.ext import flask from flask import Flask + from flask_bootstrap import Bootstrap from github import Github from . import views, services @@ -82,6 +83,8 @@ This place is called **the container**. You use the container to manage all the app = flask.Application(Flask, __name__) + bootstrap = flask.Extension(Bootstrap) + config = providers.Configuration() github_client = providers.Factory( @@ -118,6 +121,9 @@ Running such container looks like this: app = container.app() app.container = container + bootstrap = container.bootstrap() + bootstrap.init_app(app) + app.add_url_rule('/', view_func=container.index_view.as_view()) return app