Hi @Andrew_Waterhouse, welcome to the community!
For development purposes I recommend you to use Atlas CLI while the Community Edition catches up.
Using Atlas CLI is super simple, and you can manage both Atlas and local clusters. If you want to create a local cluster with the sample dataset and create a search index, just do:
$ atlas deployments setup
Then download the sample dataset:
$ curl https://atlas-education.s3.amazonaws.com/sampledata.archive -o sampledata.archive
$ mongorestore --archive=sampledata.archive --port=27017
Create the Atlas Search indexes
$ atlas deployments search indexes create searchIndex --deploymentName local614 --type local --db sample_mflix --collection movies``
Hope this helps!
2 Likes