This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Array [ | |
Object { | |
"active": true, | |
"age": 0, | |
"contactId": "0035f00000gYBlZAAW", | |
"createdDate": "2022-07-20T00:13:19.000Z", | |
"crmId": "0035f00000gYBlZAAW", | |
"email": "[email protected]", | |
"firstName": "Anna", | |
"fullName": "Anna Haro", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"posts": [{ | |
"id": "1", | |
"content": "Salaam, this is my first post.", | |
"date_posted": "Sept 20, 2020", | |
"author": { | |
"name": "Hamza Asghar Farooqi", | |
"image_src": "/path/to/image.png" | |
} | |
}, { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Remove the hashes (#) from the db/#database.yml# file name | |
Run `rake db:create` (to create db) followed by `rake db:migrate` (to migrate all the pending migrations) | |
Download respective JRE for your system from the following link, and instal JRE: https://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html | |
Run `bundle exec rake sunspot:solr:start` to run Solr search engine | |
Start Rails server on port 3000 or any other port. e.g. rails s -p <PORT> (you can install ngrok and then run `ngrok http <PORT>` to expose your local web server) | |
Once done, hit your localhost followed by '/items/import' route. e.g. If you're running your Rails web server on port 3000, then you shall hit this url in your browser: http://localhost:3000/items/import (this loads and runs through some scripts to populate data in the connected database) | |
Useful Link: | |
a. Debugging common issues with Solr (https://suchdevblog.com/DebuggingSolrSunspot.html#halp-solr-returns-no-results) |