rpiwebapp-public/yourapplication.fcgi

9 lines
200 B
Plaintext
Raw Normal View History

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