freedev commented on code in PR #2294:
URL: https://github.com/apache/solr/pull/2294#discussion_r1501419755


##########
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
+```
+
+- To list all the tasks you can execute:
+
+```
+./gradlew tasks
+```
+
+- 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, or use the `bin/post` tool to index some sample data.

Review Comment:
   ok, thanks for the review. I've updated the PR with this fix.



-- 
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

Reply via email to