jommerce 3.0.0

Creator: codyrutscher

Last updated:

Add to Cart

Description:

jommerce 3.0.0

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!

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

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.