static test server

master
Tomek Dubrownik 2012-04-24 00:30:52 +02:00
parent 347acc935e
commit 2b7b497635
2 changed files with 7 additions and 0 deletions

5
test/static.ini Normal file
View File

@ -0,0 +1,5 @@
[uwsgi]
http = 0.0.0.0:9091
master = true
module = static
callable = app

2
test/static.py Normal file
View File

@ -0,0 +1,2 @@
from flask import Flask
app = Flask(__name__, static_folder='../', static_url_path='')