def init_snapcraft(app, testing=False): app.register_blueprint(snapcraft_blueprint()) app.register_blueprint(first_snap, url_prefix="/first-snap") app.register_blueprint(login) app.register_blueprint(store_blueprint(testing=testing)) app.register_blueprint(account, url_prefix="/account") app.register_blueprint(publisher_snaps) init_docs(app, "/docs") init_blog(app, "/blog")
def init_snapcraft(app): app.register_blueprint(snapcraft_blueprint()) app.register_blueprint(first_snap, url_prefix="/first-snap") app.register_blueprint(login) app.register_blueprint(oauth) app.register_blueprint(store_blueprint()) app.register_blueprint(account, url_prefix="/account") app.register_blueprint(publisher_snaps) app.register_blueprint(publisher_github) init_docs(app, "/docs") init_blog(app, "/blog") init_tutorials(app, "/tutorials")
# Rename your project below app = FlaskBase( __name__, "juju.is", template_folder="../templates", static_folder="../static", template_404="404.html", template_500="500.html", ) template_finder_view = TemplateFinder.as_view("template_finder") app.add_url_rule("/", view_func=template_finder_view) app.add_url_rule("/<path:subpath>", view_func=template_finder_view) init_docs(app, "/docs") init_tutorials(app, "/tutorials") @app.context_processor def utility_processor(): return {"image": image_template} @app.context_processor def inject_utilities(): return { "current_url_with_query": current_url_with_query, "static_url": static_url, }
@app.route("/beyond-configuration-management") def beyond_configuration_management(): return render_template("about/beyond-configuration-management.html") @app.route("/get-in-touch") def get_in_touch(): return render_template("partials/_get-in-touch.html") template_finder_view = TemplateFinder.as_view("template_finder") app.add_url_rule("/", view_func=template_finder_view) app.add_url_rule("/<path:subpath>", view_func=template_finder_view) init_docs(app) init_tutorials(app, "/tutorials") init_blog(app, "/blog") @app.context_processor def utility_processor(): return {"image": image_template} @app.context_processor def inject_utilities(): return { "current_url_with_query": current_url_with_query, "static_url": static_url, }
def init_blueprint(app): app.register_blueprint(jaasai) app.register_blueprint(jaasredirects) app.register_blueprint(jaasstore) init_docs(app, "/docs")