janhoy commented on code in PR #2294: URL: https://github.com/apache/solr/pull/2294#discussion_r1503940156
########## README.md: ########## @@ -73,6 +73,28 @@ Guide](https://solr.apache.org/guide/solr/latest/getting-started/solr-tutorial.h - Slack: Solr Community Channel. Sign up at https://s.apache.org/solr-slack - IRC: `#solr` on [libera.chat](https://web.libera.chat/?channels=#solr) +## Developer Documentation + + Learn more about developing Solr by reading through the developer docs in [./dev-docs](./dev-docs) source tree or building Solr from source [./dev-docs/solr-source-code.adoc](./dev-docs/solr-source-code.adoc) + +### Quickstart + +Solr uses [Gradle](https://gradle.org/) for its build system. Here are some useful hints to build and run Solr locally: + +- To build a Solr dev distribution: + +``` +./gradlew dev +``` + +- To run the Solr dev distribution locally: + +``` +cd ./solr/packaging/build/dev +bin/solr start +``` + +- Open a web browser and go to http://localhost:8983/solr/ to access the Solr Admin interface. You can also use the `bin/solr` script to create and manage Solr collections. For example use the ` bin/solr post` tool to index some sample data. Review Comment: ```suggestion - Open a web browser and go to http://localhost:8983/solr/ to access the Solr Admin interface. You can also use the `bin/solr` script to create and manage Solr collections. For example use the `bin/solr post` tool to index some sample data. ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
