https://github.com/parthsharma2/django-pos
A point of sale system implemented in django
https://github.com/parthsharma2/django-pos
Last synced: 9 months ago
JSON representation
A point of sale system implemented in django
- Host: GitHub
- URL: https://github.com/parthsharma2/django-pos
- Owner: parthsharma2
- Created: 2018-08-13T17:22:54.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-10-04T13:14:41.000Z (over 7 years ago)
- Last Synced: 2025-03-18T22:36:08.798Z (about 1 year ago)
- Language: Python
- Size: 35.2 KB
- Stars: 22
- Watchers: 2
- Forks: 26
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# django-pos
A point of sale system implemented in django.
--------------------------------------------
## Setup
1. Clone this project.
```
git clone https://github.com/parthsharma2/django-pos.git
```
2. Move into the cloned project's directory.
```
cd django-pos
```
3. Create a python 3 virtual environment and activate it.
```
python3 -m venv env
```
```
source env/bin/activate
```
4. Install the requirements.
```
pip install -r requirements.txt
```
5. Make database migrations.
```
python manage.py makemigrations
```
```
python manage.py migrate
```
6. Run the application.
```
python manage.py runserver
```