Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kevinarce/django-ecommerce
Django based, E-Commerce Website.
https://github.com/kevinarce/django-ecommerce
django ecommerce-website python
Last synced: 12 days ago
JSON representation
Django based, E-Commerce Website.
- Host: GitHub
- URL: https://github.com/kevinarce/django-ecommerce
- Owner: KevinArce
- Created: 2022-06-24T20:00:35.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-04-21T22:11:42.000Z (over 1 year ago)
- Last Synced: 2024-11-05T21:45:24.483Z (2 months ago)
- Topics: django, ecommerce-website, python
- Language: Python
- Homepage:
- Size: 23.4 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Django-Ecommerce 🏪
The clean, fast and right way to start a new Django `4.0.5` powered website.
## Getting Started
Setup project environment with [virtualenv](https://virtualenv.pypa.io) and [pip](https://pip.pypa.io).
```bash
$ virtualenv project-env
$ source project-env/bin/activate
$ pip install -r https://raw.githubusercontent.com/KevinArce/Django-Ecommerce/master/requirements.txt
# You may want to change the name `projectname`.
$ django-admin startproject --template https://github.com/KevinArce/Django-Ecommerce/archive/master.zip django-ecommerce
$ cd django-ecommerce/
$ cp settings_custom.py.edit settings_custom.py
$ python manage.py migrate
$ python manage.py runserver
```## Features
* Basic Django scaffolding (commands, templatetags, statics, media files, etc).
* Split settings in two files. `settings_custom.py` for specific environment settings (localhost, production, etc). `projectname/settings.py` for core settings.
* Simple logging setup ready for production envs.## Contributing
I love contributions, so please feel free to fix bugs, improve things, provide documentation. Just send a pull request.