A single stop solution for fair crop trade
By Team-BitSlashers
View Demo
·
Report Bug
·
Request Feature
Table of Contents
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.
-
Fork and Clone
- Fork WeGroW Repo
- Clone the repo to your computer.
- Navigate through the directory
-
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 -
Install all the requirements
pip install -r requirements.txt
-
Checkout to develop branch
git status git pull git branch git checkout develop
-
Make migrations/ Create db.sqlite3
python manage.py makemigrations python manage.py migrate --run-syncdb
-
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.
-
Run server
python manage.py runserver
-
Do the Development and send us a PR referencing the issue.