Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/abeidahmed/twitter-clone

A clone of the Twitter site with rich features like creating a tweet, retweeting a tweet, tweeting an image, commenting on a tweet, and much more.
https://github.com/abeidahmed/twitter-clone

api rails react twitter

Last synced: 11 days ago
JSON representation

A clone of the Twitter site with rich features like creating a tweet, retweeting a tweet, tweeting an image, commenting on a tweet, and much more.

Awesome Lists containing this project

README

        

# Twitter clone

The app is in development stage.

### Setup

- Clone this repository
- `cd` into the folder
- Run `bundle install`
- `cd` into the client folder
- Run `yarn install`

### Setup credentials file

This app uses [cloudinary](https://cloudinary.com/) to store the images. Eg: user avatar, user banner, to name a few. Run `rails credentials:edit` and store the keys in the format:

```yml
cloudinary:
cloud_name: your_cloud_name
api_key: your_api_key
api_secret: your_api_secret_key
```

Save the file and run `foreman start -f Procfile.dev` from the root directory.