-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #242 from hemant933/main
add instagram clone
- Loading branch information
Showing
52 changed files
with
23,277 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
# Instagram-Clone using MERN Stack | ||
|
||
Building an Instagram web app clone using MERN Stack ( MongoDB , Express.js , React.js , Node.js ) and bring some additional features . | ||
|
||
# Preview : | ||
|
||
<img src="https://github.com/TheLordA/Instagram-Web-App-MERN-Stack-Clone/blob/master/Demo/LoginPageDemo.PNG" alt="Login Page Demo" width="800"> | ||
|
||
<img src="https://github.com/TheLordA/Instagram-Web-App-MERN-Stack-Clone/blob/master/Demo/HomePageDemo.PNG" alt="Home Page Demo" width="800"> | ||
|
||
# Preview Video : | ||
|
||
|
||
https://github.com/hemant933/ReactCreations/assets/104961126/6196feca-23c3-4c7d-b870-e1d49f4e00ea | ||
|
||
|
||
# Quick links : | ||
|
||
1. [Usage](#usage) | ||
2. [Todo](#todo) | ||
3. [Contribute](#contribute) | ||
4. [Image Copyright Claims](#image-copyright-claims) | ||
|
||
# Usage : | ||
|
||
1. Fork the repo and then clone it or download it. | ||
|
||
2. First install all dependencies: | ||
|
||
```bash | ||
#change directory to client | ||
cd client | ||
|
||
# with npm | ||
npm install | ||
|
||
# or with yarn | ||
yarn | ||
``` | ||
|
||
3. Create a `config/config.j` file and insert the following code it will contains all code variables. Replace values with yours !!! | ||
|
||
```javascript | ||
DB_NAME=<DATABASE_NAME> | ||
DB_USER=<DATABASE_USER> | ||
DB_PASSWORD=<DATABASE_PASSWORD> | ||
DB_HOST=<DATABASE_HOST> | ||
DB_PORT=<DATABASE_PORT> | ||
CLOUDINARY_URL=<CLOUDINARY_URL> | ||
SECRET_KEY=<YOUR_SECRET_KEY>``` | ||
|
||
4. Start the server | ||
```javascript | ||
#change directory to server | ||
cd server | ||
npm run dev | ||
``` | ||
5. Now run the app | ||
```javacript | ||
npm start | ||
``` | ||
|
||
# Todo List : | ||
|
||
Features : | ||
|
||
- [x] Explore posts | ||
- [x] Search Users | ||
- [x] Like & comment posts | ||
- [x] Follow/UnFollow users | ||
- [x] Reset password using Emails | ||
- [x] Bookmark posts | ||
- [ ] Show notifications | ||
- [ ] Private messages | ||
- [ ] Rooms discussion | ||
- [ ] Like comments | ||
- [ ] Block members | ||
- [ ] Hashtags | ||
- [ ] Tags users | ||
- [ ] Add image filters | ||
- [ ] Show all online members (whom you've followed) | ||
- [ ] Story feature | ||
- [ ] IGTV | ||
General : | ||
- [x] Folder restructuring | ||
- [x] Some serious code refactoring | ||
- [x] JSDoc & comments ( still have some more work to do ) | ||
- [ ] Upgrade packages | ||
**Thanks for reading** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Security Policy | ||
|
||
## Supported Versions | ||
|
||
Use this section to tell people about which versions of your project are | ||
currently being supported with security updates. | ||
|
||
| Version | Supported | | ||
| ------- | ------------------ | | ||
| 5.1.x | :white_check_mark: | | ||
| 5.0.x | :x: | | ||
| 4.0.x | :white_check_mark: | | ||
| < 4.0 | :x: | | ||
|
||
## Reporting a Vulnerability | ||
|
||
Use this section to tell people how to report a vulnerability. | ||
|
||
Tell them where to go, how often they can expect to get an update on a | ||
reported vulnerability, what to expect if the vulnerability is accepted or | ||
declined, etc. |
Oops, something went wrong.