1
restaurant-search/README.md

43 lines
1.6 KiB
Markdown
Raw Normal View History

2016-09-07 04:16:28 +00:00
# Restaurant Search #
2015-03-22 07:56:57 +00:00
2016-07-24 18:24:49 +00:00
This project is a prototype semantic search web application that I developed as part of my master's thesis at [Keio
University](http://www.sfc.keio.ac.jp/). I presented the results of my research at [iiWAS
2015](http://www.iiwas.org/conferences/iiwas2015/home) in Brussels, Belgium. My article, titled [Restaurant Search with
Predictive Multispace Queries](https://foosoft.net/projects/restaurant-search/dl/article.pdf) was published in the in the [ACM International Conference Proceeding
Series](https://dl.acm.org/citation.cfm?id=2837185&picked=prox&cfid=817523401&cftoken=92411506).
You can get a better understanding of the goals of this experimental search system by referring to the [overview
2018-09-16 05:30:52 +00:00
presentation](https://foosoft.net/projects/restaurant-search/slides.zip); it provides a brief overview of the points covered in my article. Although I no longer make
the prototype accessible on the web, it is easy to get it up and running locally by following the instructions below.
2015-03-22 07:56:57 +00:00
2016-09-07 04:14:02 +00:00
<iframe width="800" height="500" src="https://www.youtube.com/embed/Ic7Sq-oQ2DI" 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
```
2017-01-12 04:41:39 +00:00
$ go get github.com/FooSoft/restaurant-search
2015-07-09 04:01:46 +00:00
```
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`.