Just a basic twitter clone running on a Rails backend server using javascript fetch requests to manipulate and show data.
Test out the production
environment by simply heading to the github pages site for this repo.
You can navigate their easily by clicking here
- Clone this repository
- Open your command line interface and move into our new directory:
> cd twitter-clone
- Start up the backend server.
> cd backend
- To move into our backend application directory.> bundle install
- To install necessary gems.> rails db:setup
- To setup and seed our database.> rails start
or> rails s
- Starts the Rails backend server.
- Go ahead and navigate to the frontend directory
- Change the
BACKEND_URL
tohttp://localhost:3000
in theindex.js
file. - Open up index.html
- Start interacting with the site!
-
There is no user authentication and is only submitted via form data on the frontend
- Thus no profile views are made and soley can view posts with related comments
- Users cannot perform Update and Delete actions on their posts/comments
-
Functionality on this site is limited soley to the C & R of CRUD operations.
- With the exception of U (Update) when they like a certain post.
This project is open-sourced under the MIT License, feel free to do what you like with it.