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

https://github.com/robpando/odin-book


https://github.com/robpando/odin-book

Last synced: over 1 year ago
JSON representation

Awesome Lists containing this project

README

          

# Odin Book by Roberto Pando

A Web app similar to Facebook in simple form, where a user can:

* Sign up with email or facebook

* Edit and Update profile information

* User can upload a profile picture

* User can write posts

* User can comment on posts

* User can search for users by name

* User can friend request, cancel a friend request or unfriend a user

* User can accept or ignore a friend request

### Dependencies
* Ruby '2.3.1'
* Rails '5.0.0.1'

### Get Started
Install gems

```
$ bundle install
```

Migrate db

```
$ rails db:migrate
```

Run server

```
$ rails s
```
go to `localhost:3000`

### OR

View live: [Odin Book](https://robodinbook.herokuapp.com)

This is the final project suggested by [The Odin Project](http://www.theodinproject.com/courses/ruby-on-rails/lessons/final-project), a clone of Facebook. A nice demonstrations of my Ruby on Rails knowledge.