You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Slack: Solr Community Channel. Sign up at https://s.apache.org/solr-slack
74
74
- IRC: `#solr` on [libera.chat](https://web.libera.chat/?channels=#solr)
75
75
76
+
## Developer Documentation
77
+
78
+
Learn more about developing Solr by reading through the developer docs in [./dev-docs](./dev-docs) source tree or building Solr from source in [./dev-docs/solr-source-code.adoc](./dev-docs/solr-source-code.adoc)
79
+
80
+
### Quickstart
81
+
82
+
Solr uses [Gradle](https://gradle.org/) for its build system. Here are some useful hints to build and run Solr locally:
83
+
84
+
- To build a Solr dev distribution:
85
+
86
+
```
87
+
./gradlew dev
88
+
```
89
+
90
+
- To run the Solr dev distribution locally:
91
+
92
+
```
93
+
cd ./solr/packaging/build/dev
94
+
bin/solr start -c
95
+
```
96
+
97
+
- 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.
76
98
77
99
## Get Involved
78
100
Please review [CONTRIBUTING.md](CONTRIBUTING.md) for information on contributing to the project.
@@ -84,4 +106,3 @@ To get involved in the developer community:
0 commit comments