├── .idea ├── Facebook-clone-Web-Application.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── shelf │ ├── Uncommitted_changes_before_Update_at_01-May-21_12_51_AM_[Default_Changelist] │ │ └── shelved.patch │ └── Uncommitted_changes_before_Update_at_01-May-21_12_51_AM__Default_Changelist_.xml ├── vcs.xml └── workspace.xml ├── Procfile ├── README.md ├── __pycache__ ├── config.cpython-38.pyc └── run.cpython-38.pyc ├── app.db ├── bash.exe.stackdump ├── config.py ├── facebook ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-38.pyc │ ├── email.cpython-38.pyc │ ├── errors.cpython-38.pyc │ ├── forms.cpython-38.pyc │ ├── models.cpython-38.pyc │ ├── routes.cpython-38.pyc │ └── utilities.cpython-38.pyc ├── email.py ├── errors.py ├── forms.py ├── models.py ├── routes.py ├── static │ ├── css │ │ ├── owl.carousel.min.css │ │ ├── owl.theme.default.css │ │ └── style.css │ ├── img │ │ ├── avatar │ │ │ ├── Thumbs.db │ │ │ ├── default.jpg │ │ │ ├── demo.jpg │ │ │ ├── user1.jpg │ │ │ ├── user2.jpg │ │ │ ├── user3.jpg │ │ │ └── user4.jpg │ │ ├── cover │ │ │ ├── default.jpeg │ │ │ ├── demo.jpg │ │ │ ├── user1.jpg │ │ │ ├── user2.jpg │ │ │ ├── user3.jpg │ │ │ └── user4.jpg │ │ ├── icons │ │ │ ├── android-chrome-192x192.png │ │ │ ├── android-chrome-512x512.png │ │ │ ├── apple-touch-icon.png │ │ │ ├── arrow-down.svg │ │ │ ├── arrow-right.svg │ │ │ ├── arrow.svg │ │ │ ├── bell.svg │ │ │ ├── calendar.svg │ │ │ ├── camera.svg │ │ │ ├── chat.png │ │ │ ├── colored-flag.svg │ │ │ ├── colored-messenger.svg │ │ │ ├── colored-people.svg │ │ │ ├── comment.svg │ │ │ ├── edit.svg │ │ │ ├── explore.png │ │ │ ├── facebook.svg │ │ │ ├── favicon-16x16.png │ │ │ ├── favicon-32x32.png │ │ │ ├── favicon.ico │ │ │ ├── flag.svg │ │ │ ├── gift.svg │ │ │ ├── home.svg │ │ │ ├── image.svg │ │ │ ├── liked.svg │ │ │ ├── login.png │ │ │ ├── logo.svg │ │ │ ├── logout.png │ │ │ ├── messenger.svg │ │ │ ├── photos.svg │ │ │ ├── plus.svg │ │ │ ├── register.png │ │ │ ├── search.svg │ │ │ ├── share.svg │ │ │ ├── shield.svg │ │ │ ├── site.webmanifest │ │ │ ├── smile-2.svg │ │ │ ├── smile.svg │ │ │ ├── thumbs-up.svg │ │ │ ├── tv.svg │ │ │ ├── unlike.jpg │ │ │ ├── users.svg │ │ │ ├── video-live.svg │ │ │ └── video-room.svg │ │ ├── posts │ │ │ ├── Thumbs.db │ │ │ ├── demo.jpg │ │ │ ├── user1.jpg │ │ │ ├── user2.jpg │ │ │ ├── user3.jpg │ │ │ └── user4.jpg │ │ └── stories │ │ │ ├── 0d2ed1d5648fdca5.jpg │ │ │ ├── 14ad381fe5228092.jpg │ │ │ ├── 407aa81b0c2bd6f5.jpg │ │ │ ├── 6ffcca1cedbd17d4.jpg │ │ │ ├── 86b11970d80a7a9d.jpg │ │ │ ├── 8906fd6d83d00756.jpg │ │ │ ├── Thumbs.db │ │ │ ├── bcd921dbdbfe9629.jpg │ │ │ ├── demo.jpg │ │ │ ├── user1.jpg │ │ │ ├── user2.jpg │ │ │ ├── user3.jpg │ │ │ └── user4.jpg │ └── js │ │ ├── index.js │ │ ├── jquery.min.js │ │ └── owl.carousel.min.js ├── templates │ ├── 404.html │ ├── 500.html │ ├── _comment.html │ ├── _post.html │ ├── base.html │ ├── edit_post.html │ ├── edit_profile.html │ ├── edit_profile_details.html │ ├── email │ │ ├── reset_password.html │ │ └── reset_password.txt │ ├── explore.html │ ├── followers.html │ ├── index.html │ ├── login.html │ ├── messages.html │ ├── post.html │ ├── profile.html │ ├── register.html │ ├── reset_password.html │ ├── reset_password_request.html │ ├── send_message.html │ ├── story.html │ └── users.html └── utilities.py ├── migrations ├── README ├── __pycache__ │ └── env.cpython-38.pyc ├── alembic.ini ├── env.py ├── script.py.mako └── versions │ ├── 81791761fe18_.py │ ├── __pycache__ │ ├── 81791761fe18_.cpython-38.pyc │ └── b6d883564641_.cpython-38.pyc │ └── b6d883564641_.py ├── requirements.txt ├── run.py └── sh.exe.stackdump /.idea/Facebook-clone-Web-Application.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 14 | -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 7 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/shelf/Uncommitted_changes_before_Update_at_01-May-21_12_51_AM_[Default_Changelist]/shelved.patch: -------------------------------------------------------------------------------- 1 | Index: .idea/workspace.xml 2 | IDEA additional info: 3 | Subsystem: com.intellij.openapi.diff.impl.patch.BaseRevisionTextPatchEP 4 | <+>\r\n\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 12 | 13 | 14 | - 15 | - 16 | - 17 | - 18 | + 19 |