2022-11-13 10:39:28 -08:00

11 lines
255 B
Python

% import os
% from flask import Flask
% def create_app(test_config=None):
% """Create and configure the app."""
% app = Flask(__name__, instance_relative_config=True,
% static_url_path="/static")
% .
% .
% .