This is a social media platform built using Django. It includes essential features commonly found in modern applications, such as user authentication, posting content, likes, and comments. While the current version focuses on basic functionality for daily use, it serves as a learning foundation. Future development will focus on adding more advanced features to enhance the user experience and align with current industry standards. ..
Demo Check Out :
https://our-social.onrender.com
Clone the repository:
git clone <your-repository-url-here> cd <repository-directory-name>
(Replace <your-repository-url-here> with the actual URL of your Git repository, and <repository-directory-name> with the name of the directory created after cloning, if different from the repository name).
Create and activate a virtual environment:
python -m venv venv source venv/bin/activate # On Linux/macOS # For Windows: # venv\Scripts\activate
Install dependencies:
pip install -r requirements.txt
Apply database migrations:
python manage.py migrate
Create a superuser (optional, for admin access):
python manage.py createsuperuser
(Follow the prompts to set a username, email, and password.)
Run the development server:
python manage.py runserver
After starting the development server, access the application by navigating to http://120.0.0.1:8000/ in your web browser.