Skip to content

Latest commit

 

History

History
40 lines (34 loc) · 622 Bytes

README.md

File metadata and controls

40 lines (34 loc) · 622 Bytes

django-pos

A point of sale system implemented in django.


Setup

  1. Clone this project.
git clone https://github.com/parthsharma2/django-pos.git
  1. Move into the cloned project's directory.
cd django-pos
  1. Create a python 3 virtual environment and activate it.
python3 -m venv env
source env/bin/activate
  1. Install the requirements.
pip install -r requirements.txt
  1. Make database migrations.
python manage.py makemigrations
python manage.py migrate
  1. Run the application.
python manage.py runserver