Skip to content

Commit

Permalink
Merge pull request #39 from apisearch-io/feature/added-uuid-in-result…
Browse files Browse the repository at this point in the history
…-and-query

Added UUID in Query and Result
  • Loading branch information
mmoreram authored Mar 30, 2019
2 parents 3468b6b + 9549d0f commit 1d9a9cf
Show file tree
Hide file tree
Showing 16 changed files with 1,265 additions and 990 deletions.
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

0 comments on commit 1d9a9cf

Please sign in to comment.