UVS Farmers Marketplace

Edit this file

Install Django


pip install django

Install Django REST Framework


pip install djangorestframework

Run Migration


python manage.py migrate

If there was an error 'Your models have changes that are not yet reflected in a migration'


python manage.py makemigrations

Create super user


python manage.py createsuperuser --email "a@b.com" --username "admin"

Run Web Server


python manage.py runserver