diff options
author | Prashant S | 2020-01-21 16:35:44 +0530 |
---|---|---|
committer | GitHub | 2020-01-21 16:35:44 +0530 |
commit | 01be180d3cba129a5431745937615c09d183a5b8 (patch) | |
tree | ac8bc19c46e332cdfe54a990adb7fb039525f1c1 | |
parent | 4aa8cf3dc790e445f5ebf52985c68449c8f035d3 (diff) | |
download | R_on_Cloud_Web_Interface-01be180d3cba129a5431745937615c09d183a5b8.tar.gz R_on_Cloud_Web_Interface-01be180d3cba129a5431745937615c09d183a5b8.tar.bz2 R_on_Cloud_Web_Interface-01be180d3cba129a5431745937615c09d183a5b8.zip |
added solr search config
-rw-r--r-- | R_on_Cloud/default_config.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/R_on_Cloud/default_config.py b/R_on_Cloud/default_config.py index 842baec..a0a1737 100644 --- a/R_on_Cloud/default_config.py +++ b/R_on_Cloud/default_config.py @@ -46,3 +46,10 @@ TORNADO_PORT = '8000' # class ExecutionHandler. DEFAULT_TORNADO_WORKERS = 1 DEFAULT_REQUEST_COUNT = 1 + +# Solr search engine config + +HOST = "localhost" +PORT = "8983" +COLLECTION = "r_code_search_collection" +URL = 'http://' + HOST + ':' + PORT + '/solr/' + COLLECTION |