Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/toumorokoshi/greyhound-search
An indexing and file web application
https://github.com/toumorokoshi/greyhound-search
Last synced: about 2 months ago
JSON representation
An indexing and file web application
- Host: GitHub
- URL: https://github.com/toumorokoshi/greyhound-search
- Owner: toumorokoshi
- Created: 2013-02-23T06:00:19.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2013-10-11T05:54:15.000Z (about 11 years ago)
- Last Synced: 2023-04-04T03:15:26.985Z (over 1 year ago)
- Language: CSS
- Size: 621 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
greyhound-search
================A web application for searching for files and finding text within them.
Features
--------* File search (with autocomplete)
* Text search in files (thanks to [codesearch](https://code.google.com/p/codesearch/), this is insanely fast)
* Search multiple directories
* built-in api
* websocketsRequirements
------------go1.1 or higher is required
Runbook
-------No executables exist as of yet. If you have golang you can start greyhound
by cloning the repository, navigating the directory root, and running
the following:export GOPATH=`cwd`
go get
go run main.goThis will build the repository, and run the main executable for GreyhoundSearch
Configuration
-------------
An example configuration is below:{"Projects": {
"code": {
"Root": "/home/tsutsumi/Workspace/",
"Exclusions": [".*\\.class", ".*\\.pyc"]
},
"statics": {
"Root": "/home/tsutsumi/Opensource/"}
}
}This configuration Illustrates the following:
* specifying a project, which requires:
* a project name
* a 'Root' key, pointing to the rootpath of that GHS should index
* 'Exclusions', which is a list of regex files to excludeTODO:
-----* Image Preview / load
* Watch for changes and re-index automatically
* Docs