Categorygithub.com/devfacet/ferret
modulepackage
3.1.2+incompatible
Repository: https://github.com/devfacet/ferret.git
Documentation: pkg.go.dev

# README

Ferret

Release GoDoc Build Status

Ferret is a search engine that unifies search results from different resources such as Github, Slack, Trello, AnswerHub and more. It can be used via CLI, UI or REST API

Distributed knowledge and avoiding context switching are very important for efficiency. Ferret provides a unified search interface for retrieving and accessing to information with minimal effort.

Installation

MacLinuxWin
64bit64bit64bit

See for building from source.

Usage

Make sure Ferret is configured properly before use it.

Help

ferret -h

CLI

# Search Github
# For more Github search syntax see https://developer.github.com/v3/search/
ferret search github intent
ferret search github intent+extension:md

# Search Slack
ferret search slack "meeting minutes"

# Search Trello
ferret search trello milestone

# Search AnswerHub
ferret search answerhub vpn

# Search Consul
ferret search consul influxdb

# Pagination
# Number of search result for per page is 10
ferret search trello milestone --page 2

# Timeout
ferret search trello milestone --timeout 5000ms

# Limit
ferret search trello epics --limit 100

# Opening search results
# Search for 'milestone' keyword on Trello and go to the second search result
ferret search trello milestone
ferret search trello milestone --goto 2

UI

ferret listen

# open http://localhost:3030/

Web UI

REST API

# Listen for HTTP requests
ferret listen

# Search by REST API
curl 'http://localhost:3030/search?provider=answerhub&keyword=intent&page=1&timeout=5000ms'

Configuration

Credentials;

ferret.yml

Set FERRET_CONFIG environment variable;

# macOS, linux
export FERRET_CONFIG=~/ferret.yml

# win
set FERRET_CONFIG=%HOMEDRIVE%%HOMEPATH%/ferret.yml

Save the following configuration into ferret.yml file in your home folder.

search:
  timeout: 5000ms # timeout for search command. Default is `5000ms`
  gotoCmd: open   # used by `--goto` argument for opening links. Default is `open`
listen:
  address: :3030  # HTTP address for the UI and the REST API. Default is :3030
  pathPrefix:     # a URL path prefix for the UI (i.e. /ferret/)
  providers:      # a comma separated list of providers. Default is base on config.yml
providers:
  - provider: answerhub
    url:      {{env "FERRET_ANSWERHUB_URL"}}
    username: {{env "FERRET_ANSWERHUB_USERNAME"}}
    password: {{env "FERRET_ANSWERHUB_PASSWORD"}}
  - provider: consul
    url: {{env "FERRET_CONSUL_URL"}}
  - provider: github
    url:      {{env "FERRET_GITHUB_URL"}}
    username: {{env "FERRET_GITHUB_SEARCH_USER"}}
    token:    {{env "FERRET_GITHUB_TOKEN"}}
  - provider: slack
    token: {{env "FERRET_SLACK_TOKEN"}}
  - provider: trello
    token: {{env "FERRET_TRELLO_TOKEN"}}
    key:   {{env "FERRET_TRELLO_KEY"}}

Set the environment variables base on ferret.yml and credentials.

Note: Environment directives ({{env ...}}) can be replaced with credentials. But it's not recommended for production usage.

Build

go get github.com/rakyll/statik
go get -u -v github.com/yieldbot/ferret
cd $GOPATH/src/github.com/yieldbot/ferret
go generate ./assets
go build

Test

./test.sh

Release

Releases are handled by Travis CI

# Update CHANGELOG.md and README.md
git add CHANGELOG.md README.md

git commit -m "v1.0.0"         # replace v1.0.0 with new version
git tag -a v1.0.0 -m "v1.0.0"  # replace v1.0.0 with new version
git push --follow-tags         # or git push && git push --tags

Contributing

All contributions are welcome. However there are rules and guidelines;

  • Code contributions must be through pull requests
  • Run tests, linting and formatting before a pull request (test.sh)
  • Pull requests can not be merged without being reviewed
  • Use "Issues" for bug reports, feature requests and discussions
  • Do not refactor existing code without a discussion
  • Do not add a new third party dependency without a discussion
  • Use semantic versioning and git tags for versioning

License

Licensed under The MIT License (MIT) For the full copyright and license information, please view the LICENSE.txt file.

# Packages

Package api provides REST API functionality.
Package assets provides embedded assets.
Package config provides configuration functionality.
Package providers wraps the provider packages.
Package search provides search interface and functionality.