11 lines
255 B
Python
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")
|
|
% .
|
|
% .
|
|
% .
|