Skip to content

helmihidzir/odin-facebook

Repository files navigation

Odin Facebook

Ruby on Rails Final Project

The core features for the project are

  • Users
  • User Profile
  • Send and accept friend request
  • Create, edit and delete posts
  • News feed
  • Like and unlike
  • Authentication and Authorization

Only backend.

Run this project locally

  1. Clone this repository to your local machine.
git clone [email protected]:helmihidzir/odin-facebook.git
  1. Change into the odin-facebook directory.
cd odin-facebook
  1. Install the project dependencies using bundler.
gem install bundler
bundle install
  1. Create the database.
rails db:create
  1. Run the database migrations.
rails db:migrate
  1. Start the Rails server.
rails s
  1. Lastly, navigate to http://0.0.0.0:3000 to play around with the project.