1
Go to file
2015-09-22 12:43:35 +09:00
build Read URLs from command line instead of file 2015-09-22 12:43:35 +09:00
cmd Cleanup 2015-09-01 18:41:37 +09:00
static Address instead of URLs 2015-09-20 12:36:45 +09:00
.gitignore Making search app more modular 2015-09-01 16:52:19 +09:00
README.md Updating README 2015-09-01 20:10:48 +09:00
search.go Updating server 2015-09-18 19:07:55 +09:00
types.go Address instead of URLs 2015-09-20 12:36:45 +09:00
util.go Address instead of URLs 2015-09-20 12:36:45 +09:00

Restaurant Search

This work-in-progress represents a prototype semantic search application that I'm developing as part of my master's by referring to the overview presentation. The prototype is open-source and those who are interested are encouraged to clone the project and thesis at Keio University. You can get a better understanding of the goals of this system tinker with it. You may also access a live snapshot of the prototype on my server.

This installation guide is designed with Ubuntu-based distributions in mind (I'm using Linux Mint for development), but I expect it to be trivial to get this application running on other flavors of Linux. If you run into any problems, let me know.

Installation

  1. Install the system dependencies:

    # apt-get install nodejs-legacy nodejs npm
    
  2. Install the Node dependencies:

    # npm install -g bower
    
  3. Install the Go tool chain:

    $ wget https://godeb.s3.amazonaws.com/godeb-amd64.tar.gz
    $ tar xzvf godeb-amd64.tar.gz
    # ./godeb install
    
  4. Set the GOPATH environment variable (read the docs).

  5. Install the search application:

    $ go get github.com/FooSoft/search
    
  6. Install the client libraries (from the search/static directory):

    $ bower install
    
  7. Build and start the server (from the search/cmd directory):

    $ go build
    $ ./cmd
    
  8. Access the web application at localhost:8080.