Skip to content

Latest commit

 

History

History
62 lines (33 loc) · 1.52 KB

README.md

File metadata and controls

62 lines (33 loc) · 1.52 KB

NextLevelWeek

PCHDjango 1.1-rc3


e-commerce in Django Framework 4.2.3

Introducing "PCHDjango", an e-commerce software built on the powerful Django Framework. PCHDjango is a solid foundation for developers who want to build their own online stores, offering a complete shopping experience for customers. In the first version, the software comes equipped with essential functionalities, such as a login screen for customers, an intuitive system for adding products to the cart and placing orders.

Captura de tela de 2023-07-27 10-34-23

Captura de tela de 2023-07-27 10-34-34

Captura de tela de 2023-07-27 10-34-58

make clone:

git clone https://github.com/JuanBindez/PCHDjango/

virtualenv:

  • linux

    virtualenv -p python3 venv
    
  • Windows

    python3 -m venv venv
    

requirements:

pip install -r requirements.txt

migrate:

python3 manage.py migrate

make migrations:

python3 manage.py makemigrations

superuser:

python3 manage.py createsuperuser

run server:

python3 manage.py runserver