This is a Django-based news portal project.
- Python 3.x installed
- pip installed
- A virtual environment tool (optional but recommended)
-
Clone the Repository
git clone https://github.com/your-username/your-repository.git cd your-repository
-
Create a Virtual Environment (optional but recommended) python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate -
Install Dependencies pip install -r requirements.txt
-
Apply Migrations python manage.py makemigrations
python manage.py migrate -
Run the Development Server python manage.py runserver
-
Access the Application Open your browser and go to: http://127.0.0.1:8000/