The project for study Django.
All actions should be executed from the source directory of the project and only after installing all requirements.
-
Firstly, create and activate a new virtual environment:
python3.9 -m venv ../venv source ../venv/bin/activate
-
Install packages:
pip install --upgrade pip pip install -r requirements.txt
-
Run project dependencies, migrations, fill the database with the fixture data etc.:
python manage.py migrate python manage.py loaddata <path_to_fixture_files> python manage.py runserver
-
Run Redis Server:
redis-server
-
Run Celery:
celery -A django_store worker --loglevel=INFO
-
Run Stripe:
stripe listen --forward-to 127.0.0.1:8000/webhook/stripe/