https://github.com/donaldte/django-ecom
Application de ecommerce avec Python et Django plus integration des modes de paiement (Paypal, Orange Money, MTN Mobile, Moove etc)
https://github.com/donaldte/django-ecom
django djangoecommerce master-card mtnmobilemoney orangemoney payment-integration paypal python3 visa-credit-card
Last synced: 7 months ago
JSON representation
Application de ecommerce avec Python et Django plus integration des modes de paiement (Paypal, Orange Money, MTN Mobile, Moove etc)
- Host: GitHub
- URL: https://github.com/donaldte/django-ecom
- Owner: donaldte
- License: apache-2.0
- Created: 2022-10-25T08:36:29.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-05-27T12:19:50.000Z (about 2 years ago)
- Last Synced: 2023-05-27T13:32:40.652Z (about 2 years ago)
- Topics: django, djangoecommerce, master-card, mtnmobilemoney, orangemoney, payment-integration, paypal, python3, visa-credit-card
- Language: Python
- Homepage:
- Size: 720 KB
- Stars: 3
- Watchers: 1
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# django-ecommerce
Application de ecommerce avec django avec integration des API de paiement (`Paypal`, `credit card` `Orange Money`, `MTN Mobile`, `Moove money` etc)Vous pourriez aller plus loin avec ce projet.
# tech`Python` version 3.9, `django` version 4.1.2
# Page principal

# Page panier

# Page commande

# Modes paiement

# Paiement succes
# Structure

# Table dans le Admin





# django-ecom
django-ecom app# Step 1
Clone the project
```
git clone https://github.com/donaldte/django-ecom.git
```# Step 2
Go to django-ecom directory
```
cd django-ecom
```# Step 3
Create a virtual environment
```
python3.9 -m venv venv
```# Step 4
Activate a virtual environment
Linux/mac user
```
source venv/bin/activate
```Window user
```
venv\Scripts\activate
```# Step 5
Install requirements
```
pip install -r requirements.txt
```