diff --git a/test/static.ini b/test/static.ini new file mode 100644 index 0000000..4021829 --- /dev/null +++ b/test/static.ini @@ -0,0 +1,5 @@ +[uwsgi] +http = 0.0.0.0:9091 +master = true +module = static +callable = app diff --git a/test/static.py b/test/static.py new file mode 100644 index 0000000..e6713e0 --- /dev/null +++ b/test/static.py @@ -0,0 +1,2 @@ +from flask import Flask +app = Flask(__name__, static_folder='../', static_url_path='')