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.
- Host: GitHub
- URL: https://github.com/rustamovakrom/onlineshop
- Owner: RustamovAkrom
- Created: 2024-08-24T13:05:49.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-10-28T18:07:56.000Z (6 months ago)
- Last Synced: 2025-01-11T10:16:35.174Z (4 months ago)
- Topics: celery, celery-flower, celery-redis, celery-task, css3, django, html5, js
- Language: JavaScript
- Homepage: https://rustamovakrom.github.io/OnlineShop/
- Size: 4.85 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```