In fact, the project structure indicated on the "Getting Started with Flask on App Engine Standard Environment" page <https://cloud.google.com/appengine/docs/standard/python/getting-started/python-standard-env#basic_structure_of_an_app_project> is:
flask-app project structure app.yaml: Configure the settings of your App Engine application main.py: Write the content of your application static: Directory to store your static files style.css: Basic stylesheet that formats the look and feel of your template files templates: Directory for all of your HTML templates form.html: HTML template to display your form submitted_form.html: HTML template to display the content of a submitted form How does your app.yaml <https://cloud.google.com/appengine/docs/standard/python/config/appref>look like? In particular, what stays written under the "handlers" entry? It may be worthwhile having a look at "Creating a request handler for your Flask app" sub-chapter <https://cloud.google.com/appengine/docs/standard/python/getting-started/python-standard-env#creating_a_request_handler_for_your_flask_app> . -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/google-appengine. To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/fbfe9028-0675-485e-8a33-836daa2714e0%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
