https://github.com/robpando/odin-book
https://github.com/robpando/odin-book
Last synced: over 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/robpando/odin-book
- Owner: RobPando
- Created: 2016-11-14T21:42:59.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-01-24T18:03:55.000Z (over 9 years ago)
- Last Synced: 2025-02-08T08:13:11.909Z (over 1 year ago)
- Language: Ruby
- Homepage: https://robodinbook.herokuapp.com
- Size: 366 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.