-
Notifications
You must be signed in to change notification settings - Fork 46
Create MeiliSearch Indexes #618
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
…prove error handling in indexing
ZibanPirate
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
one more thing we forgot to do in #617 , otherwise API server won't bootstrap on cloud:
- add melisearch container in the other
api/oracle-cloud/docker-compose.ymlfile:
meilisearch:
image: getmeili/meilisearch:latest
ports:
- "7700:7700"
volumes:
- /home/ubuntu/app-data/api/meilisearch_db:/data.ms
environment:
MEILI_NO_ANALYTICS: true
MEILI_MASTER_KEY: "default"
- add
api/meilisearch_dbto.gitignore
ZibanPirate
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
annnnd one last thing (i promise)
in both docker-compose files, the volume is not correct, should change data.ms to meili_data
SearchServiceinstantiation.indexservice method to save new entries with their specific indexes.Type of change