Skip to content

Commit 58e79bc

Browse files
Add wsgi starter script
1 parent 458548b commit 58e79bc

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

dyndns/wsgi.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
"""https://flask.palletsprojects.com/en/3.0.x/deploying/uwsgi/"""
2+
3+
from flask import Flask
4+
5+
from dyndns.environment import ConfiguredEnvironment
6+
from dyndns.webapp import create_app
7+
8+
app: Flask = create_app(ConfiguredEnvironment())

0 commit comments

Comments
 (0)