I have a Flask app that I am trying to run through Gunicorn.
The app is located in a module, lets say its called "mymodule", and the __init__.py file located in mymodule/ looks like this:
from flask import Flask
app = Flask(__name__)
if __name__ == '__main__':
app.run()
However, no matter the URL, a 404 error is returned.
I have tried running Gunicorn in the folder that contains the mymodule folder:
gunicorn -b 127.0.0.1:5000 mymodule:app
I have tried pointing Gunicorn at my debug file, "runapp.py" in the root, by running gunicorn -b 127.0.0.1:5000 runapp.py, but that results in error: [Errno 48] Address already in use.
What am I doing wrong?
Edit: File structure
/runapp.py
/mymodule/__init__.py
/mymodule/views.py
runapp.py:
from mymodule import app, views
app.run(debug=True)
__init.py__:
from flask import Flask
from mymodule import views
app = Flask(__name__)
if __name__ == '__main__':
app.run()
views.py:
from mymodule import api
from mymodule.forms import SettingsForm
from functools import wraps
from flask import request, Response, render_template, redirect, url_for
[...]
@app.route('/')
@requires_auth
def dashboard():
data = api.get_overview()
return render_template('dashboard.html', data=data)
gunicorn mymodule:app, soappis used, notrunapp. – Omri Barel Dec 2 '12 at 18:21__init__.pyfile doesn't importapp. If I say that it shouldfrom mymodule import app, it says thatImportError: cannot import name app. Only happens when loading directly through Gunicorn - if I dopython runapp.pyit works fine. – phidah Dec 2 '12 at 20:35runapp.py, but you've only shown us__init__.py, so it's not easy to guess... What doesrunapp.pyexpose? – Omri Barel Dec 2 '12 at 20:37