The fastest way to run the bot is to run it in polling mode using SQLite database without all Celery workers for background jobs. This should be enough for quickstart:
git clone https://github.com/aymogo/E-commerce-shop
cd E-commerce-shop/myshopCreate virtual environment (optional)
python3 -m venv venv
source venv/bin/activateInstall all requirements:
pip install -r requirements.txt
Run migrations to setup SQLite database:
python manage.py migrateCreate superuser to get access to admin panel:
python manage.py createsuperuserWrite commant to run the server:
python manage.py runserver