Skip to content

Latest commit

 

History

History
43 lines (30 loc) · 1.18 KB

README.md

File metadata and controls

43 lines (30 loc) · 1.18 KB

JayKisan APP

Overview

JayKisan is a Django-based web application designed to assist farmers with various agricultural tasks. This README provides instructions on how to set up and run the application locally.

Prerequisites

Before you begin, ensure you have met the following requirements:

  • Python 3.8 or higher installed on your machine.
  • Git installed on your machine.

Setup Instructions

1. Fork the Repository

  1. Navigate to the FarmerApp GitHub repository (replace with your actual repository link).
  2. Click on the "Fork" button at the top right corner of the page.

2. Clone the Repository

After forking the repository, clone it to your local machine by running:

git clone https://github.com/your-username/Jay_Kisan.git

###Create a Virtual Environment
cd Jay_Kisan
python -m venv .venv

###Activate the Virtual Environment
Activate the virtual environment with the following command:

On Windows:
.venv\Scripts\activate

On macOS/Linux:
source .venv/bin/activate

###Install Required Packages
pip install -r requirements.txt


###Navigate to the FarmerApp Directory
cd FarmerApp

###Run the Application
python manage.py runserver