A twitter clone using Ruby on Rails.
Check it out at https://fiction-buzz.herokuapp.com/
Under construction 🚧
- Rails 6
- MRI Ruby 2.7.1
- Databasse: postgres 12
- Fork the repo and clone it on your local system.
- Go to the project directory and run
bundle install
- Create the database and perform migration (Add your Postgres credentials in config/database.yml)
rake db:create
rake db:migrate
- Start the server on localhost:3000 by running
rails server