/Farmstack

The website is designed for farmers to connect and collaborate. It features a chat system for real-time communication, a forum section for sharing knowledge, weather forecasting tools for informed decision making, and crop prediction tools to optimize crop production.

Primary LanguageJavaScript

Getting Started with FarmStack MERN App

Installation and usage

  1. Clone this repository
    git clone https://github.com/Bikdistinct/Farmstack.git
  2. Install dependencies
    cd server
    npm install
    cd client
    npm install
  3. Create .env in root directory
    cd ..
    touch .env
  4. Configure environment variables. To acquire your MONGO_URI, create a cluster for free over at https://www.mongodb.com/
    MONGO_URI=<YOUR_MONGO_URI>
    PORT=5000
  5. Run the server
    cd server
    npm start
  6. Start a new terminal and run react’s development server
    cd client
    npm start