Flask at first run: Do not use the development server in a production environment

I installed the Flask plugin in PyCharm Community Edition and I just have this simple code in my flask app: from flask import Flask app = Flask(__name__) @app.route('/') def index(): return '...