Powered by Django & Python
Shopping django project.
Login with your SuperUser to list, insert, delete or update products.
Go to ../products/my-form to fill the form about the buyer.
-
Install virtual environment
$ pip install pipenv
-
Run virtual environment
$ pipenv shell
-
Install all requirements at once
$ pipenv install
-
Check if all requirements are installed
$ pip list
-
To start project you must make migrations
$ python (or python3) manage.py makemigrations
$ python (or python3) manage.py migrate (will migrate all at once)
-
Create SuperUser (admin)
$ python mange.py createsuperuser
-
Run server
$ python mange.py runserver