Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jordic/django_tiny_shop
A Django Tiny Shop
https://github.com/jordic/django_tiny_shop
Last synced: about 2 months ago
JSON representation
A Django Tiny Shop
- Host: GitHub
- URL: https://github.com/jordic/django_tiny_shop
- Owner: jordic
- License: bsd-3-clause
- Created: 2011-12-19T19:51:47.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2016-04-19T06:02:30.000Z (over 8 years ago)
- Last Synced: 2023-03-11T12:34:03.141Z (almost 2 years ago)
- Language: JavaScript
- Homepage:
- Size: 574 KB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGELOG
- License: LICENSE
Awesome Lists containing this project
README
Django Tiny Shop
==========================Super simple and small Django Cart/shop.
Author: Jordi CollellFEATURES
================- Decoupled:
- Client, order, payment, product, shipping are modules, that you can/must overwrite,
from your shop specs and local enviroment.
- Payment works using django_paypal
See for implementing it
- What's provided
- Simple client modules, with contact address.
- Simple product module, with inline variations, no stock.
- Simple shipping modules with correos from spain.
- Only sells to spain
- Templates: A set of basic templates are provided, but you must overwrite them.
- Simple set of templatetags, to work with. Using django_templatetags_sugar, you
- You can view signals examples at demo/shop- Features plan (Not implemented)
- Adding more shippings modulesTRY
=============1. Create a virtualenv
2. Install requirements.txt
pip install -r requirements.txt
3. Sync your db
./manage.py syncdb
4. launch demo site:
./manage.py runserver
5. Browse your shop
http://localhost:8000/admin
User: Demo
Pass: demoBASIC SHOP SETTINGS
====================
Look at demo/settings.py are full documented