/django_shopify

An app to get you started developing apps with Shopify and Django

Primary LanguagePython

Django Shopify

This project should give you a good start towards developing a shopify app in Django. It's still under development. The goal is to have it provide a pinax bootstrap starter layer on top of Shopify's django implementation.

To Use:

$ mkdir [your_project_dir]
$ cd !$
$ django-admin.py startproject test_pro --template=https://github.com/jammons/django_shopify/zipball/master .

Setup:

  1. Create an account on app.shopify.com
  2. Create an app and enter http://localhost:8000 for the application URL.
  3. Open shopify_settings.py in your Django project directory.
  4. Copy the API Key and Shared Key values as SHOPIFY_API_KEY and SHOPIFY_API_SECRET. If you know what permission scope you need you can edit that as well.
  5. Create a virtual environment
  6. Run pip install -r requirements.txt
  7. Run ./manage.py syncdb
  8. Run ./manage.py runserver