Skip to content

Latest commit

 

History

History
27 lines (23 loc) · 1.21 KB

README.md

File metadata and controls

27 lines (23 loc) · 1.21 KB

social-media-site-using-django


A fully-functional Social media site named socio made using django framework with its inbuilt mysql database.


New project can be created as:
django-admin startproject django_project

New app in project can be created as:
python manage.py startapp socio

start current project by :

Entering into the django_project directory
open command prompt here
type command : python manage.py runerver

url's


http://127.0.0.1:8000/ - home for navigation
http://127.0.0.1:8000/Newsfeed/ - all post/neewsfeed
http://127.0.0.1:8000/filtered/ - for searching a post
http://127.0.0.1:8000/dashboard/ - user dashboard
http://127.0.0.1:8000/profile/ - user profile -> can see and update his profile
http://127.0.0.1:8000/password-reset/ - to change password
http://127.0.0.1:8000/deactivate/ - to delete account
http://127.0.0.1:8000/post/new/ - for posting new content
http://127.0.0.1:8000/trending/ - most liked pictures
http://127.0.0.1:8000/bookmark/ - saved images by a user
http://127.0.0.1:8000/admin - for admin login and options (default mamanged by django itself.)