cpoerschke commented on code in PR #2294: URL: https://github.com/apache/solr/pull/2294#discussion_r1501025160
########## README.md: ########## @@ -73,6 +73,39 @@ 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 + +Solr uses Gradle for its build system. Here some useful hints to build and run Solr locally: Review Comment: ```suggestion Solr uses Gradle for its build system. Here are some useful hints to build and run Solr locally: ``` ########## README.md: ########## @@ -73,6 +73,39 @@ 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 + +Solr uses Gradle for its build system. Here some useful hints to build and run Solr locally: + +- To build a Solr dev distribution for your local OS run: + +``` +./gradlew dev +``` + +- To run the dev distribution as Solr standalone: + +``` +cd ./solr/packaging/build/dev +bin/solr start +``` + +- To run the dev distribution as SolrCloud: + +``` +cd ./solr/packaging/build/dev +bin/solr start -c +``` Review Comment: cross-referencing https://lists.apache.org/thread/td6rh0ycqn9oxlgo2dtcs6mmzh64ny6r -- 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: issues-unsubscr...@solr.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@solr.apache.org For additional commands, e-mail: issues-h...@solr.apache.org