Skip to main content

A collection of Django apps

Project description

jommerce version django version python version license Code style: black

Why does this package exist?

Because 80% of customer projects have common apps such as authentication, store, admin, blog, forum, academy, etc. Therefore, as freelancers, we decided to code all these apps only once in one place and use them in different projects as often as desired, and all these apps can be customized by the settings of each project. This helps to save our time and increase our income in exchange for doing projects.

Installing

You can use pip to install jommerce for usage:

pip install jommerce

Usage

Create Project

Simple command line for jumpstarting production-ready Django projects:

jommerce

or

python -m jommerce

Auth

#settings.py

INSTALLED_APPS = [
    # ...
    "jommerce.auth", 
    # ...
]

MIDDLEWARE = [
    # ...
    'jommerce.auth.middleware.AuthenticationMiddleware',
    # ...
]
# urls.py
from django.urls import path, include

urlpatterns = [
    # ...
    path("auth/", include("jommerce.auth.urls", namespace="auth")),
    # ...
]

Blog

#settings.py

INSTALLED_APPS = [
    # ...
    "jommerce.blog", 
    # ...
]
# urls.py 
from django.urls import path, include

urlpatterns = [
    # ...
    path("blog/", include("jommerce.blog.urls", namespace="blog")),
    # ...
]

Contributing

Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.

If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!

  1. Fork the Project
  2. Create your Feature Branch (git checkout -b feature/AmazingFeature)
  3. Commit your Changes (git commit -m 'Add some AmazingFeature')
  4. Push to the Branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

jommerce-3.0.0.tar.gz (20.1 kB view details)

Uploaded Source

Built Distribution

jommerce-3.0.0-py3-none-any.whl (39.2 kB view details)

Uploaded Python 3

File details

Details for the file jommerce-3.0.0.tar.gz.

File metadata

  • Download URL: jommerce-3.0.0.tar.gz
  • Upload date:
  • Size: 20.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.3.2 CPython/3.11.1 Windows/10

File hashes

Hashes for jommerce-3.0.0.tar.gz
Algorithm Hash digest
SHA256 8792d91683036931d7b337dd71d83de463217c830852710815d506ebf882c1f8
MD5 283d406b68a6fa47e425cf4baa4a19d0
BLAKE2b-256 da2232ae3bf4fe41b1affd250d117ad8d81b84d9251f27b1451092c6be51ff8f

See more details on using hashes here.

File details

Details for the file jommerce-3.0.0-py3-none-any.whl.

File metadata

  • Download URL: jommerce-3.0.0-py3-none-any.whl
  • Upload date:
  • Size: 39.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.3.2 CPython/3.11.1 Windows/10

File hashes

Hashes for jommerce-3.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 16349bc3b4bc74fc49b889e6239f9e3509e71bb79a42d6188ccf167130681482
MD5 da9b297669276a300d51dab01d8a1dd5
BLAKE2b-256 73f6587fdd7e8a8ca8c749eba6566cb7b784fadd9f9b064c29144074e0ef39f5

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page