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

https://github.com/alexandrehiroyuki/ecommerce-practice

Udemy django e-commerce practice project.
https://github.com/alexandrehiroyuki/ecommerce-practice

django practice practice-project python python3

Last synced: about 2 months ago
JSON representation

Udemy django e-commerce practice project.

Awesome Lists containing this project

README

          

Initialize virtual env:

```
source ./Scripts/activate
```

Run server:

```
python src/manage.py runserver
```

Collect statics:

```
python manage.py collectstatic
```

Migrations:

```
python manage.py makemigrations
python manage.py migrate
```