Skip to content

Commit 4eee107

Browse files
committed
Add initial apisearch repos
2 parents 60f32be + 73356a7 commit 4eee107

File tree

206 files changed

+38663
-2
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

206 files changed

+38663
-2
lines changed

.circleci/config.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
version: 2
2+
jobs:
3+
build:
4+
docker:
5+
- image: circleci/node:latest
6+
7+
steps:
8+
- checkout
9+
- run:
10+
name: Install dependencies
11+
command: |
12+
npm install
13+
14+
- run:
15+
name: Run test scenarios
16+
command: |
17+
npm run test

.editorconfig

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# EditorConfig is awesome: http://EditorConfig.org
2+
3+
root = true;
4+
5+
[*]
6+
# Ensure there's no lingering whitespace
7+
trim_trailing_whitespace = true
8+
# Ensure a newline at the end of each file
9+
insert_final_newline = true
10+
11+
[*.ts]
12+
# Unix-style newlines
13+
end_of_line = lf
14+
charset = utf-8
15+
indent_style = space
16+
indent_size = 4

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/node_modules/
2+
dist/apisearch.min.js.LICENSE.txt

LICENSE

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
Copyright (c) Marc Morera <yuhu@mmoreram.com>
2+
3+
Permission is hereby granted, free of charge, to any person obtaining a copy
4+
of this software and associated documentation files (the "Software"), to deal
5+
in the Software without restriction, including without limitation the rights
6+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7+
copies of the Software, and to permit persons to whom the Software is furnished
8+
to do so, subject to the following conditions:
9+
10+
The above copyright notice and this permission notice shall be included in all
11+
copies or substantial portions of the Software.
12+
13+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19+
THE SOFTWARE.

README.md

Lines changed: 29 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,29 @@
1-
# apisearch-javascript-client
2-
⚡️ Apisearch client for javascript applications!
1+
# Apisearch - Javascript Client
2+
3+
This library is part of the Apisearch project.
4+
5+
[![CircleCI](https://circleci.com/gh/apisearch-io/javascript-client.svg?style=svg)](https://circleci.com/gh/apisearch-io/javascript-client)
6+
[![Join the Slack](https://img.shields.io/badge/join%20us-on%20slack-blue.svg)](https://apisearch.slack.com)
7+
8+
Apisearch is an open source search engine fully based on open source third party
9+
technologies. The project provides an *in crescendo* set of language
10+
integration libraries for her users, as well as some third party projects
11+
integration bundles, plugins, or javascript widgets.
12+
13+
Some first steps for you!
14+
15+
- [Go to DOCS](http://docs.apisearch.io)
16+
17+
or
18+
19+
- [Download and install Apisearch](https://docs.apisearch.io/#/download)
20+
- [Create your first application](https://docs.apisearch.io/#/first-example)
21+
22+
Take a tour using these links.
23+
24+
- [View a demo](http://apisearch.io)
25+
- [Join us on slack](https://apisearch.slack.com) - or [Get an invitation](https://apisearch-slack.herokuapp.com/)
26+
- [Twitter](https://twitter.com/apisearch_io)
27+
28+
...and remember give us a star on Github! The more stars we have, the further
29+
we'll arrive.

0 commit comments

Comments
 (0)