This repository holds the source code for project Shopify for the CSE-205N course at IIT(BHU).
Development:
- Fork the repo and clone it to your system.
- Configure your .env variables
- Move to project directory in your terminal and run
pipenv shell
to start the project's virtual environment.(If pipenv is not installed runpip install pipenv
and then usepipenv shell
). It will also load environment variables required for the project. - Run
pipenv install
to download the project's dependencies. - Now start the development server using
python manage.py runserver
. - In case there is an error regarding settings moule not configured on above steps run
export DJANGO_SETTINGS_MODULE=djecommerce.settings
on your terminal.