An open API service indexing awesome lists of open source software.

https://github.com/imanaspaul/django-ecommerce-tutorial-manascode

Django eCommerce tutorial for beginners
https://github.com/imanaspaul/django-ecommerce-tutorial-manascode

bootstrap4 django django-project ecommerce html5 python-3-6

Last synced: 14 days ago
JSON representation

Django eCommerce tutorial for beginners

Awesome Lists containing this project

README

        

# 🛍️ Django e-сommerce tutorial manascode

Django e-commerce tutorial for beginners.

[Follow the tutorials to learn more.](https://manascode.com)

## 🏗 Get started

1. Clone the repository:

```bash
git clone https://github.com/imanaspaul/Django-eCommerce-tutorial-manascode.git
```

2. Create virtual enviroment:

```bash
virtualenv env
source env/bin/activate # for Linux
.\env_name\Scripts\activate # for Windows
```

3. Install all the dependencies:

```bash
pip install -r requirements.txt
```

4. Change directory to `ecommerce`:

```bash
cd ecommerce
```

5. Run migrations:

```bash
py manage.py migrate
```

6. Run the server:

```bash
py manage.py runserver
```