Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/abeidahmed/twitter-clone
- Owner: abeidahmed
- License: mit
- Created: 2020-09-19T13:41:06.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2020-10-08T14:06:20.000Z (about 4 years ago)
- Last Synced: 2024-10-23T13:48:47.622Z (14 days ago)
- Topics: api, rails, react, twitter
- Language: JavaScript
- Homepage:
- Size: 2.15 MB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.