There are several ways to deploy a Flask project. Deploying with gunicorn might be the easiest, install gunicorn and then:
gunicorn project:app --daemon
Although you probably want to use supervisor or something of that nature to monitor gunicorn (at the very least use --pid
so you can reload/stop gunicorn easily).