Files
flowers/flowers.wsgi
T

10 lines
151 B
Python

#!/usr/bin/python
import sys
sys.path.insert(0, "/usr/share/projects/wsgi_apps/flowers")
from flowers import create_app
application = create_app()