├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ └── feature_request.md ├── dependabot.yml ├── release-draft-template.yml └── workflows │ └── release-drafter.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── assets └── version_update.gif └── scripts └── update_meilisearch_version.sh /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilisearch/meilisearch-migration/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilisearch/meilisearch-migration/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilisearch/meilisearch-migration/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilisearch/meilisearch-migration/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilisearch/meilisearch-migration/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/release-draft-template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilisearch/meilisearch-migration/HEAD/.github/release-draft-template.yml -------------------------------------------------------------------------------- /.github/workflows/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilisearch/meilisearch-migration/HEAD/.github/workflows/release-drafter.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilisearch/meilisearch-migration/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilisearch/meilisearch-migration/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilisearch/meilisearch-migration/HEAD/README.md -------------------------------------------------------------------------------- /assets/version_update.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilisearch/meilisearch-migration/HEAD/assets/version_update.gif -------------------------------------------------------------------------------- /scripts/update_meilisearch_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meilisearch/meilisearch-migration/HEAD/scripts/update_meilisearch_version.sh --------------------------------------------------------------------------------