Skip to content

A very simple file server, exposes files of a specified directory over a specific port. The files are to be walked over with workers and indexed in a BoltDB in memory, then using Bleze make the files searchable, by name, full text, etc with a live WebUI. Eventually allowing find and replace, git commit comparisons, etc

License

Notifications You must be signed in to change notification settings

wade-welles/files

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

This is a web server that exposes github.com/mjlyons/filesearch. Use it if you want to search a directory tree's text files (say, source files) over the web.

Once running, you can query as:

http://$SERVER/search?q=$QUERY

The results will come back as JSON.

The code is pretty sloppy right now. No tests, code duplication, yikes. Please don't judge me on it, maybe one day I'll clean this up!

Setup example

> go get github.com/mjlyons/filesearch-server
> go install github.com/mjlyons/filesearch-server
> $GOBIN/filesearch-server -precache-all-files -worker-count 20 -buffering 10 -src-root $SRC_PATH

Note, don't use a '/' at the end of $SRC_PATH.

MIT License.

About

A very simple file server, exposes files of a specified directory over a specific port. The files are to be walked over with workers and indexed in a BoltDB in memory, then using Bleze make the files searchable, by name, full text, etc with a live WebUI. Eventually allowing find and replace, git commit comparisons, etc

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages