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

https://github.com/rustamovakrom/onlineshop

✅ Create a new codespace backend for a full-fledged e-commerce platform. Implemented on Django using the Django REST Framework. The project supports user, product, order and payment management.
https://github.com/rustamovakrom/onlineshop

celery celery-flower celery-redis celery-task css3 django html5 js

Last synced: about 2 months ago
JSON representation

✅ Create a new codespace backend for a full-fledged e-commerce platform. Implemented on Django using the Django REST Framework. The project supports user, product, order and payment management.

Awesome Lists containing this project

README

        

# OnlineShop

## Runing project

### Install dependenciase
```
$ python3 -m venv env
$ source env/bin/activate
$ pip install --upgrade pip
$ pip install -r requirements.txt

```
### Run Redis
```console
$ systemctl start redis-server
```
### Run Celery
```console
$ celery -A core worker -l info
```
### Run flower
```console
$ celery -A core flower
```
### Run flower and authentificate
```
$ celery -A core flower --basic-auth=username:password
```
### Run
```
$ python manage.py makemigrations
$ python manage.py migrate
$ python mangae.py runserver
```