Skip to content

Commit 1d9a9cf

Browse files
authored
Merge pull request #39 from apisearch-io/feature/added-uuid-in-result-and-query
Added UUID in Query and Result
2 parents 3468b6b + 9549d0f commit 1d9a9cf

16 files changed

+1265
-990
lines changed

.circleci/config.yml

+16-1
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,28 @@ version: 2
22
jobs:
33
build:
44
docker:
5-
- image: circleci/node:7.10.0
5+
- image: circleci/node:latest
6+
7+
- image: docker.elastic.co/elasticsearch/elasticsearch:6.6.0
8+
environment:
9+
ES_JAVA_OPTS: "-Xms256m -Xmx256m"
10+
discovery.type: single-node
11+
action.auto_create_index: "-apisearch*,+*"
12+
13+
- image: apisearchio/search-server
14+
environment:
15+
APISEARCH_GOD_TOKEN: 0e4d75ba-c640-44c1-a745-06ee51db4e93
16+
ELASTICSEARCH_HOST: localhost
17+
ELASTICSEARCH_PORT: 9200
18+
ELASTICSEARCH_REFRESH_ON_WRITE: 1
19+
620
steps:
721
- checkout
822
- run:
923
name: Install dependencies
1024
command: |
1125
npm install
26+
1227
- run:
1328
name: Run test scenarios
1429
command: |

README.md

+11-7
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,8 @@
22

33
This library is part of the Apisearch project.
44

5-
[![npm version](https://badge.fury.io/js/apisearch.svg)](https://badge.fury.io/js/apisearch)
6-
[![CircleCI](https://circleci.com/gh/apisearch-io/javascript-client.svg?style=svg)](https://circleci.com/gh/apisearch-io/javascript-client)
7-
[![Join the chat](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/apisearch_io/general)
5+
[![CircleCI](https://circleci.com/gh/apisearch-io/search-server.svg?style=svg)](https://circleci.com/gh/apisearch-io/search-server)
6+
[![Join the Slack](https://img.shields.io/badge/join%20us-on%20slack-blue.svg)](https://apisearch.slack.com)
87

98
Apisearch is an open source search engine fully based on open source third party
109
technologies. The project provides an *in crescendo* set of language
@@ -13,15 +12,20 @@ integration bundles, plugins, or javascript widgets.
1312

1413
Some first steps for you!
1514

15+
- [Go to DOCS](http://docs.apisearch.io)
16+
17+
or
18+
1619
- [Download and install Apisearch](http://docs.apisearch.io/#download-and-install-apisearch)
1720
- [Create your first application](http://docs.apisearch.io/#create-your-first-application)
18-
- [Add some data](http://docs.apisearch.io/#add-some-data)
21+
- [Import some items](http://docs.apisearch.io/#import-some-items)
1922
- [Create your first search bar](http://docs.apisearch.io/#create-my-first-search-bar)
2023

2124
Take a tour using these links.
2225

23-
- [Documentation](http://docs.apisearch.io)
2426
- [View a demo](http://apisearch.io)
25-
- [Talk with us](https://apisearch.slack.com)
27+
- [Join us on slack](https://apisearch.slack.com) - or [Get an invitation](https://apisearch-slack.herokuapp.com/)
2628
- [Twitter](https://twitter.com/apisearch_io)
27-
- [Youtube Channel]()
29+
- [Youtube Channel](https://www.youtube.com/channel/UCD9H_POyre6Wvahg-zaLzsA)
30+
31+
And remember to star the project! The more stars, the more far we'll arrive.

examples/search-input.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@
3737

3838
// 1. Create the client
3939
let repository = apisearch.createRepository({
40-
app_id: '54725861',
41-
index_id: '66777162',
40+
app_id: '9c078fa1a748',
41+
index_id: 'e742fbfbac24',
4242
token: 'daf93c2b-40bc-49f2-870e-f8f62ea524ad',
4343
options: {
4444
endpoint: 'https://apisearch.global.ssl.fastly.net',

0 commit comments

Comments
 (0)