Skip to content

Commit 7d31332

Browse files
committed
Created gunicorn WSGI Entry Point
1 parent 24fba59 commit 7d31332

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

wsgi.py

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
#!/usr/bin/python
2+
3+
#
4+
# gunicorn WSGI Entry Point
5+
#
6+
# To run this application as www-data on Raspberry Pi
7+
# create systemd service.
8+
# See https://github.com/lhost/rpi-scripts/blob/master/nodemcu-webdriver.sh for example
9+
10+
from webdriver import app
11+
12+
application = app
13+
14+
if __name__ == "__main__":
15+
application.run()

0 commit comments

Comments
 (0)