Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bhushan354/twitter-clone
This repository contains simple Twitter-like web where user can perform CRUD operations on tweeets.
https://github.com/bhushan354/twitter-clone
bootstrap devise erb-template gems javascript rest-api ruby-on-rails
Last synced: 7 days ago
JSON representation
This repository contains simple Twitter-like web where user can perform CRUD operations on tweeets.
- Host: GitHub
- URL: https://github.com/bhushan354/twitter-clone
- Owner: bhushan354
- Created: 2024-04-23T16:20:58.000Z (8 months ago)
- Default Branch: dev
- Last Pushed: 2024-04-25T13:29:45.000Z (8 months ago)
- Last Synced: 2024-11-01T23:42:31.860Z (about 2 months ago)
- Topics: bootstrap, devise, erb-template, gems, javascript, rest-api, ruby-on-rails
- Language: Ruby
- Homepage:
- Size: 68.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Twitter-clone
## Presentation video link:
https://drive.google.com/file/d/1gbbhFzT4oi_WQbapySDbez22QxaxOpU6/view?usp=sharing## Features
1- User can signin/login with valid credentials.
2- User can post their tweet messages and can perform CRUD operations on them.## Follow following steps to get this app working
1 - open your terminal and run following commands :
```
[email protected]:bhushan354/Twitter-Clone.gitcd Twitter-Clone
```2 - configure the rails/ruby version in GEMFILE
3 - configure your config/database.yml file according to your database configuration
4 then run following commands :
```
bundle install
rails db:drop
rails db:create
rails db:migrate
```5 - to start your webpage on localhost run :
```
rails server
```6 - Signin/Login with your credentials and start using the app.