2015-07-09 04:01:46 +00:00
# Restaurant Search #
2015-03-22 07:56:57 +00:00
2015-11-17 03:46:58 +00:00
This work-in-progress represents a prototype semantic search web application that I'm developing as part of my master's
thesis at [Keio University ](http://www.sfc.keio.ac.jp/ ). You can get a better understanding of the goals of my research
2016-07-09 05:55:14 +00:00
by referring to the [overview presentation ](https://foosoft.net/projects/restaurant-search/slides ). Although I no longer make the prototype accessible on the web, it
is easy to get it up and running locally.
2015-03-22 07:56:57 +00:00
2016-07-09 05:55:14 +00:00
< iframe width = "800" height = "500" src = "https://www.youtube.com/embed/Ic7Sq-oQ2DI" frameborder = "0" allowfullscreen > < / iframe >
2015-03-22 07:56:57 +00:00
2016-07-09 05:55:14 +00:00
## Dependencies ##
2015-08-25 04:32:42 +00:00
2016-07-09 05:55:14 +00:00
* [Bower ](https://bower.io/ )
* [Go ](https://golang.org/ )
* [Node.js ](https://nodejs.org/ )
2015-08-25 04:32:42 +00:00
2016-07-09 05:55:14 +00:00
## Installation ##
2015-03-22 07:56:57 +00:00
2016-07-09 05:55:14 +00:00
1. Install the search application:
2015-03-22 07:56:57 +00:00
2015-07-09 04:01:46 +00:00
```
$ go get github.com/FooSoft/search
```
2015-03-22 07:56:57 +00:00
2016-07-09 05:55:14 +00:00
2. Install the client libraries (from the `search/static` directory):
2015-07-09 04:01:46 +00:00
```
$ bower install
```
2016-07-09 05:55:14 +00:00
3. Build and start the server (from the `search/cmd` directory):
2015-07-09 04:01:46 +00:00
```
$ go build
2015-09-01 11:10:19 +00:00
$ ./cmd
2015-07-09 04:01:46 +00:00
```
2016-07-09 05:55:14 +00:00
4. Access the web application at `localhost:8080` .
2015-11-17 05:48:46 +00:00
## License ##
MIT