diff --git a/site_cubicweb.py b/site_cubicweb.py new file mode 100644 index 0000000000000000000000000000000000000000..680de326f545d419bf86d0431bf40873d8c0f3c4_c2l0ZV9jdWJpY3dlYi5weQ== --- /dev/null +++ b/site_cubicweb.py @@ -0,0 +1,18 @@ +options = ( + ('elasticsearch-locations', + {'type': 'string', + 'default': '', + 'help': 'Elastic Search location (eg. 192.168.0.23:9200), ' + 'this can be a list of locations (192.168.0.23:9200,192.168.0.24:9200,' + ' you can also include the scheme (eg. http://192.168.0.23:9200) ', + 'group': 'elasticsearch', + 'level': 5, + }), + ('index-name', + {'type': 'string', + 'default': 'cubicweb', + 'help': 'Elastic Search index name (eg. cubicweb)', + 'group': 'elasticsearch', + 'level': 5, + }), +)