Point of sale project (done using Django, Alpine.js, HTMX, TailwindCSS).
Done as an internship project for JDI SOFT
- clone the project
git clone https://github.com/YounesOMK/Django-POS
- cd into the project
cd Django-POS
- Create virtual environment
python -m venv env
- Activate the virtual environment
source env/bin/activate
- install requirements
pip install -r requirements/local.txt
- Run migrations
./manage.py migrate
- Create a superuser
./manage.py createsuperuser
- run the server
./manage.py runserver 3000