Skip to content

Added UUID in Query and Result #39

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 30, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 16 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,28 @@ version: 2
jobs:
build:
docker:
- image: circleci/node:7.10.0
- image: circleci/node:latest

- image: docker.elastic.co/elasticsearch/elasticsearch:6.6.0
environment:
ES_JAVA_OPTS: "-Xms256m -Xmx256m"
discovery.type: single-node
action.auto_create_index: "-apisearch*,+*"

- image: apisearchio/search-server
environment:
APISEARCH_GOD_TOKEN: 0e4d75ba-c640-44c1-a745-06ee51db4e93
ELASTICSEARCH_HOST: localhost
ELASTICSEARCH_PORT: 9200
ELASTICSEARCH_REFRESH_ON_WRITE: 1

steps:
- checkout
- run:
name: Install dependencies
command: |
npm install

- run:
name: Run test scenarios
command: |
Expand Down
18 changes: 11 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@

This library is part of the Apisearch project.

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

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

Some first steps for you!

- [Go to DOCS](http://docs.apisearch.io)

or

- [Download and install Apisearch](http://docs.apisearch.io/#download-and-install-apisearch)
- [Create your first application](http://docs.apisearch.io/#create-your-first-application)
- [Add some data](http://docs.apisearch.io/#add-some-data)
- [Import some items](http://docs.apisearch.io/#import-some-items)
- [Create your first search bar](http://docs.apisearch.io/#create-my-first-search-bar)

Take a tour using these links.

- [Documentation](http://docs.apisearch.io)
- [View a demo](http://apisearch.io)
- [Talk with us](https://apisearch.slack.com)
- [Join us on slack](https://apisearch.slack.com) - or [Get an invitation](https://apisearch-slack.herokuapp.com/)
- [Twitter](https://twitter.com/apisearch_io)
- [Youtube Channel]()
- [Youtube Channel](https://www.youtube.com/channel/UCD9H_POyre6Wvahg-zaLzsA)

And remember to star the project! The more stars, the more far we'll arrive.
4 changes: 2 additions & 2 deletions examples/search-input.html
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@

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