All Projects → iColdPlayer → kasir

iColdPlayer / kasir

Licence: MIT license
Cashier Management & Inventory Management System

Programming Languages

python
139335 projects - #7 most used programming language
YAML
28 projects

Projects that are alternatives of or similar to kasir

larapos
Laravel Point of sale with invoice full source code free download pos apps.
Stars: ✭ 38 (+35.71%)
Mutual labels:  point-of-sale, cashier, kasir, aplikasi-pos
django ecommerce
Scalable Django E-Commerce, perfect to start one new online shop project.
Stars: ✭ 25 (-10.71%)
Mutual labels:  ecommerce, django-application, e-commerce
Elfcommerce
A headless open source Ecommerce project written in ReactJS + ExpressJS
Stars: ✭ 47 (+67.86%)
Mutual labels:  ecommerce, crm, e-commerce
Awesome Startup Tools List
List of all tools (apps, services) that startups should use.
Stars: ✭ 188 (+571.43%)
Mutual labels:  ecommerce, crm
Smartstorenet
Open Source ASP.NET MVC Enterprise eCommerce Shopping Cart Solution
Stars: ✭ 2,363 (+8339.29%)
Mutual labels:  ecommerce, e-commerce
Next Ecommerce
⚡️ Quantum Ecommerce. Made with Next.js | GraphQL | Apollo Server | Apollo Client | SSR
Stars: ✭ 186 (+564.29%)
Mutual labels:  ecommerce, e-commerce
Ymple Ecommerce
Node js E-commerce Framework powered with Sails.js & Node.js as an Ecommerce Platform Shop Solution
Stars: ✭ 152 (+442.86%)
Mutual labels:  ecommerce, e-commerce
Moqui Framework
Use Moqui Framework to build enterprise applications based on Java. It includes tools for databases (relational, graph, document), local and web services, web and other UI with screens and forms, security, file/resource access, scripts, templates, l10n, caching, logging, search, rules, workflow, multi-instance, and integration.
Stars: ✭ 205 (+632.14%)
Mutual labels:  ecommerce, crm
Coreshop
CoreShop - Pimcore eCommerce
Stars: ✭ 193 (+589.29%)
Mutual labels:  ecommerce, e-commerce
E Commerce Db
Database schema for e-commerce (webstores) sites.
Stars: ✭ 245 (+775%)
Mutual labels:  ecommerce, e-commerce
Django-WebApp
This is a web-app created using Python, Django. By using this user can login, upload files and also can view and download files uploaded by other users.
Stars: ✭ 285 (+917.86%)
Mutual labels:  django-application, django-framework
Shopyo
🎁 Your Open web framework, designed with big in mind. Flask with Django advantages. Build your management systems, ERP products & mobile backend (coming soon). Small business needs apps included by default. First timers friendly. Email: [email protected] | password: pass
Stars: ✭ 172 (+514.29%)
Mutual labels:  ecommerce, e-commerce
Importexportfree
Improve default Magento 2 Import / Export features - cron jobs, CSV , XML , JSON , Excel , mapping of any format, Google Sheet, data and price modification, improved speed and a lot more!
Stars: ✭ 160 (+471.43%)
Mutual labels:  ecommerce, e-commerce
mantle-udm
Mantle Universal Data Model
Stars: ✭ 38 (+35.71%)
Mutual labels:  ecommerce, crm
Aimeos Typo3
TYPO3 e-commerce extension for professional, ultra fast online shops, complex B2B applications and #gigacommerce
Stars: ✭ 157 (+460.71%)
Mutual labels:  ecommerce, e-commerce
Aimeos Symfony
Symfony e-commerce bundle for professional, ultra fast online shops, complex B2B applications and #gigacommerce
Stars: ✭ 194 (+592.86%)
Mutual labels:  ecommerce, e-commerce
saleor-sdk
JavaScript/TypeScript SDK for building e-commerce experiences and checkouts with Saleor API.
Stars: ✭ 125 (+346.43%)
Mutual labels:  ecommerce, e-commerce
Supply
🛍 Supply is a free e-commerce Jekyll theme with Gumroad integration.
Stars: ✭ 24 (-14.29%)
Mutual labels:  ecommerce, e-commerce
Pharmacy-Mangment-System
👨‍💻 🏥 MEAN stack Pharmacy Management system.
Stars: ✭ 229 (+717.86%)
Mutual labels:  backend, point-of-sale
Reaction
Mailchimp Open Commerce is an API-first, headless commerce platform built using Node.js, React, GraphQL. Deployed via Docker and Kubernetes.
Stars: ✭ 11,588 (+41285.71%)
Mutual labels:  ecommerce, e-commerce

Cashier System Management & Inventory Management Using Django.

Build Status
CircleCI

You can also see the live demo here.
with user: admin
password: demoadmin (The demo can take a time to load)

Read more the flowchart and the pattern models here

Installation:

# Clone it
git clone https://github.com/iColdPlayer/kasir.git

cd kasir

# create your own Virtual Environment on you local machine
python -m venv env

# then activate it
source env/bin/activate

# Install all the dependencies
pip install -r requirements.txt

# export your SECRET_KEY
export SECRET_KEY='your_secret_key'

# Migrate 
./manage.py migrate

# you can also create an admin for yourself (default username is admin, pass: admin)
./manage.py createsuperuser

# Run it
./manage.py runserver

And go to your localhost:8000, you should see the login page there.
You can also register as user at localhost:8000/register.

Import & Export Data From Admin Page

You can also export and import your stock from the admin page itself. Go to /admin/data/stock, you should be able to see the example data over there.

Production

Please do not forget to collectstatic before you plan to use on production by running:
./manage.py collectstatic or your site won't be able to load the staticfiles.

To make sure your staticfiles works correctly, you can running locally on your local machine with debug set to False by typing this:
./manage.py runserver --insecure

If you plan to use on production, please do not forget to uncomment this line below in your settings when DEBUG = 0.

Check this option by running:
./manage.py check --deploy

SECURE_SSL_REDIRECT = True
SESSION_COOKIE_SECURE = True
SECURE_HSTS_SECONDS = True
SECURE_HSTS_PRELOAD = True
SECURE_HSTS_INCLUDE_SUBDOMAINS = True
SECURE_BROWSER_XSS_FILTER = True
SECURE_CONTENT_TYPE_NOSNIFF = True
X_FRAME_OPTIONS = 'DENY'
CSRF_COOKIE_SECURE = True
SECURE_PROXY_SSL_HEADER = ('HTTP_X_FORWARDED_PROTO', 'https')
CONN_MAX_AGE = 60

The language currently support for Indonesian only, other language coming soon.

Thank's for visiting and don't forget to give a star, create an issue or pull request.


MIT License

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].