Avast ye landlubbers! Saleor be a Satchless store ye can fork.
-
Fork the repo on GitHub (you can skip this step if you like)
-
git clone
your repository -
Install it in development mode:
$ python setup.py develop
(For production use
python setup.py install
instead.) -
Add a
SECRET_KEY
to yoursettings.py
(we did not want to include one out of fear that you'd forget to change it) -
Prepare the database:
$ saleor syncdb --all
-
Run
saleor runserver
¹ to start the development server (on localhost:8000) -
Edit the code to have it suite your requirements
-
Run the tests to make sure everything works:
$ python setup.py test
-
Deploy!
¹ saleor
is a shortcut for running python manage.py
so you can use it to execute all management commands.