Saidalo1 / Django-Ecommerce

This Django-Ecommerce project is for commercial use. The project model is taken from online_shop_api and made according to the template

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Django Ecommerce.


It is an Django Ecommerce system built on Django Framework. It contains everything you need to add products and use as a quality store.

Some screenshots

Product-List

App Screenshot

Product-Details

App Screenshot

About this Project:

I'll be happy if you provide any feedback or code improvements or suggestions.

Connect with me at:

     

📫 How to reach me: saidakhmedovsaidalo@gmail.com

Some technical information:

  • Django - 4.1.3
  • Django Ckeditor - 6.5.1
  • Django Mptt - 0.14.0
  • Django Environ - 0.9.0
  • Faker - 16.6.1
  • Faker Commerce - 1.0.3

To Install:

Cloning the Repository:

$ git clone github.com/Saidalo1/Django-Ecommerce.git
$ cd Django-Ecommerce

Installing the environment control:

$ pip install virtualenv
$ virtualenv env

Activating the environment:

on Windows:

env\Scripts\activate

on Mac OS / Linux:

$ source env/bin/activate

Installing dependencies:

$ pip install -r requirements/base.txt

Create a .env file on ecom folder (/root/.env) setting all requirements without using space after "=".

Copy and paste on our .env file:

# Secret key
SECRET_KEY=SECRET_KEY

# Database settings
DATABASE_NAME=DATABASE_NAME
DATABASE_USER=DATABASE_USER
DATABASE_PASS=DATABASE_PASS

# Email settings
EMAIL_HOST_USER=YOUREMAIL
EMAIL_HOST_PASSWORD=YOUREMAILSHOSTPASSWORD

Installing MAKE:

On Mac OS & Linux:

sudo apt install make
sudo apt install build-essential

On Windows:

1. Press Win + X keys together to open the Power menu.
2. Select Windows Powershell(Admin).
3. Type the command ‘Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))' and press Enter
4. Downloads and installs chocolatey as available from their official source: https://community.chocolatey.org/courses/installation/installing?method=installing-chocolatey#powershell
5. Type choco to verify if the installation worked.
6. Now, type the command ‘choco install make‘ to install Make.
7. Go to the installation directory C:\Program Files(x86)\GnuWin32\ to confirm the installation worked.

Install HStoreExtension:

With database:

sudo su - postgres              //switch to postgres user
\c DATABASENAME;                     //connect your database
CREATE EXTENSION IF NOT EXISTS hstore;      //create extension

With migrations:

Add "HStoreExtension()" to your operations in migrations.

Type this command to make migrations and migrate:

make mig

Create a super user:

$ make admin

Finishing running server:

$ python manage.py runserver

Add some random data:

$ python manage.py create

Contributing

You can send how many PR's do you want, I'll be glad to analyse and accept them! And if you have any question about the project...

📫Email-me: saidakhmedovsaidalo@gmail.com

  

Thank you!

License

NPM   

This project is licensed under the MIT License - see the LICENSE.md file for details.

About

This Django-Ecommerce project is for commercial use. The project model is taken from online_shop_api and made according to the template

License:GNU General Public License v3.0


Languages

Language:JavaScript 37.2%Language:Less 25.9%Language:CSS 18.4%Language:HTML 12.5%Language:Python 6.0%Language:Makefile 0.0%