-
Notifications
You must be signed in to change notification settings - Fork 162
How to use endpoints with flask and gae? #19
Comments
Hi @du2x, I noticed you closed this. Did you get your question answered? |
No. Actually, I closed it because I was not sure about putting here as a issue is appropriate. |
You can think of cloud endpoints as essentially a separate WSGI app that lives alongside your flask app. They can share common code, but the "web framework" part is different. It's like using Flask and Bottle side-by-side. It's possible, but a little tricky. Your handlers:
# Endpoints handler.
- url: /_ah/spi/.*
script: api.APPLICATION
# Flask handler
- url: /.*
script: main.app
|
nice, it's pretty clear now. |
No problem, glad I could help. |
I missed the use of endpoints in this skeleton.
According to Google and Udacity course, the endpoints are a major functionally.
The text was updated successfully, but these errors were encountered: