Skip to content

Latest commit

 

History

History
44 lines (22 loc) · 1.13 KB

README.md

File metadata and controls

44 lines (22 loc) · 1.13 KB

Twitter Clone

This project is a twitter clone for a university course project of Internet Engineering.

Frontend

The frontend of project is build with React and Material UI. After cloning the project, you have to run:

npm install

Downloads necessary packages.

Then for running the project you can run:

npm start

Runs the app in the development mode.
Open http://localhost:3000 to view it in the browser.

Backend

The backend of project is build with NodeJs and Express. Also the projext is initialized with [Express Generator]https://github.com/expressjs/generator. Furthermore, For the api routes you can check routes.rest file. Before running the projects, create images and videos directory in backend/public folder. After cloning the project, you have to run:

npm install

Downloads necessary packages.

Then for running the backend you can run:

npm start

It will run backend on http://localhost:3005