I created a sample app guestbook-foo in App Engine.
It works fine in localhost:8080, but when I deploy the project, I get a "no matching index found." error.
API error 4 (datastore_v3: NEED_INDEX): no matching index found. recommended index is:
- kind: Greeting
ancestor: yes
properties:
- name: Date
direction: desc
In the project directory there is a index.yaml
indexes:
- kind: Greeting
ancestor: yes
properties:
- name: Date
direction: desc
I think I must upload the index file to the server. But I couldn't find out where I should specify the file. How can I configure gcloud app deploy option? Or is there another way to configure it?