Skip to content

Latest commit

 

History

History
36 lines (26 loc) · 995 Bytes

README.md

File metadata and controls

36 lines (26 loc) · 995 Bytes

Saleor

Avast ye landlubbers! Saleor be a Satchless store ye can fork.

Build Status

Usage

  1. Fork the repo on GitHub (you can skip this step if you like)

  2. git clone your repository

  3. Install it in development mode:

    $ python setup.py develop
    

    (For production use python setup.py install instead.)

  4. Add a SECRET_KEY to your settings.py (we did not want to include one out of fear that you'd forget to change it)

  5. Prepare the database:

    $ saleor syncdb --all
    
  6. Run saleor runserver¹ to start the development server (on localhost:8000)

  7. Edit the code to have it suite your requirements

  8. Run the tests to make sure everything works:

    $ python setup.py test
    
  9. Deploy!

¹ saleor is a shortcut for running python manage.py so you can use it to execute all management commands.