/SCL-2022-BitSlashers

Primary LanguageJupyter NotebookApache License 2.0Apache-2.0


Logo

WeGroW

A single stop solution for fair crop trade
By Team-BitSlashers
View Demo · Report Bug · Request Feature

Table of Contents
  1. About The Project
  2. Getting Started
  3. Roadmap

About The Project

Hello, welcome to WeGroW. Extremely glad you’re here. You might have observed farmers bearing huge loss during crop trade due to lack of market knowledge and predominance of intermediaries. Hence we are a single stop solution where farmers meet consumers, aided with analytical insights and regular price visibility.

Built With

forthebadge made-with-python

Powered by Django.

Getting Started

Installation

  1. Fork and Clone

    1. Fork WeGroW Repo
    2. Clone the repo to your computer.
    3. Navigate through the directory
  2. Navigate Through the directory Create a Virtual Environment for the Project

    In Windows

    cd SCL-2022-BitSlashers/SCL_Project
    
    python -m venv venv
    
    venv\Scripts\activate

    In Ubuntu/MacOS

    cd SCL-2022-BitSlashers/SCL_Project
    
    python -m virtualenv venv
    
    source venv/bin/activate

    If you are giving a different name then venv, then please mention it in .gitigonre first

  3. Install all the requirements

    pip install -r requirements.txt
  4. Checkout to develop branch

    git status
    git pull
    git branch
    git checkout develop
    
    
  5. Make migrations/ Create db.sqlite3

    python manage.py makemigrations
    python manage.py migrate --run-syncdb
  6. Create a super user. In django if you want to access admin page, you need to create an account first.

    python manage.py createsuperuser
    

    Then select your username and password.

  7. Run server

    python manage.py runserver
  8. Do the Development and send us a PR referencing the issue.