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
- Host: GitHub
- URL: https://github.com/uesteibar/changebook
- Owner: uesteibar
- License: mit
- Created: 2015-07-23T12:28:21.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-08-11T01:13:55.000Z (over 9 years ago)
- Last Synced: 2025-01-11T11:47:52.407Z (4 months ago)
- Language: Ruby
- Homepage:
- Size: 3.97 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```