django-cash-register 0.2.3

Creator: danarutscher

Last updated:

Add to Cart

Description:

djangocashregister 0.2.3

django-cash-register is a Django app to manage product by cashier.

Installation
pip install django-cash-register


Quick start

Add “django_cash_register” to your INSTALLED_APPS settings.py like this:
INSTALLED_APPS = [
...
'django_cash_register',
]

If you want to use django_cash_register as main url. Add “DJANGO_CASH_REGISTER_MAIN_PAGE” to settings.py like this:
DJANGO_CASH_REGISTER_MAIN_PAGE = True

Add “STATICFILES_DIRS” to settings.py like this:
STATICFILES_DIRS = [
[BASE_DIR / 'static'][0]
]

Add “django_cash_register.urls” to urls.py like this:
urlpatterns = [
...
path('', include('django_cash_register.urls')),
]

Execute command:
./manage.py migrate

Start the development server and visit http://127.0.0.1:8000 or http://127.0.0.1:8000/django_cash_register



Application

License

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

Customer Reviews

There are no reviews.