An open API service indexing awesome lists of open source software.

https://github.com/uesteibar/changebook

Book exchanging social network
https://github.com/uesteibar/changebook

Last synced: 2 months ago
JSON representation

Book exchanging social network

Awesome Lists containing this project

README

        

# changebook

Final project at the Ironhack Web Development Bootcamp.

[Check it live here](http://changebook.herokuapp.com)

Instructions to make it run:

clone the project
```
git clone https://github.com/uesteibar/changebook.git
```

install the ruby dependencies
```
bundle install
```

install the node dependencies
```
npm install
```

run the migrations
```
rake db:migrate
```

install elasticsearch
```
brew install elasticsearch
```

run the elasticsearch server
```
elasticsearch
```

run the server
```
rails s
```

to run the specs:
````
rake spec
```