rpiwebapp-public/yourapplication.fcgi

9 lines
201 B
Plaintext
Raw Normal View History

2019-07-06 23:00:00 -07:00
#!/usr/bin/python3
from flup.server.fcgi import WSGIServer
2019-08-23 21:34:42 -07:00
from rpiWebApp import app
2019-07-06 23:00:00 -07:00
if __name__ == '__main__':
app.debug = True
WSGIServer(app, bindAddress='/run/rpiWebApp/fcgi.sock').run()