Files
flowers/flowers.wsgi
T

10 lines
151 B
Python
Raw Normal View History

2025-03-25 20:32:26 +00:00
#!/usr/bin/python
import sys
2026-07-18 20:27:19 +02:00
sys.path.insert(0, "/usr/share/projects/wsgi_apps/flowers")
2025-03-25 20:32:26 +00:00
2026-07-18 20:27:19 +02:00
from flowers import create_app
application = create_app()