rpiwebapp-public/yourapplication.fcgi
Matthew Welch 1fb4a869b0 Added user data and Google OAuth
Added initial implementation of user data for tv shows and movies as well as OAuth for Google sign in.
2020-03-19 19:25:44 -07:00

9 lines
201 B
Python

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