The Pineapple Project is an open source argiculture recommendation system.
###Prerequisites To build The Pineapple Project locally you'll need
Then follow these instructions
-
Clone the repo
-
Create a virtual environment in the new directory
virtualenv venv --distrubute -
Activate the virtual environment
#bash source venv/bin/activate #powershell . ./venv/Scripts/activate.ps1 -
Install the requirements
pip install -r requirements.txt -
Set environment variables
# bash export DJANGO_SECRET_KEY=YourLocalSecretKey # powershell $Env:DJANGO_SECRET_KEY = "YourLocalSecretKey" -
Run the development server
#bash python manage.py runserver --settings=ThePineappleProject.settings.local